spikeProtectionCallouts.tsx 373 B

1234567891011121314
  1. import {Alert} from 'sentry/components/core/alert';
  2. import {t} from 'sentry/locale';
  3. export function SpikeProtectionRangeLimitation() {
  4. return (
  5. <Alert.Container>
  6. <Alert type="warning">
  7. {t(
  8. "To view this project's spike data on the chart, please select a time range between 30d and 6h"
  9. )}
  10. </Alert>
  11. </Alert.Container>
  12. );
  13. }