replaySettingsAlert.tsx 417 B

1234567891011121314
  1. import {Alert} from 'sentry/components/core/alert';
  2. import {t} from 'sentry/locale';
  3. export default function ReplaySettingsAlert() {
  4. return (
  5. <Alert.Container>
  6. <Alert data-test-id="replay-settings-alert" type="info">
  7. {t(
  8. 'Issues created from replay data (i.e., by toggling the settings below) will not consume your errors quota.'
  9. )}
  10. </Alert>
  11. </Alert.Container>
  12. );
  13. }