|
@@ -1,7 +1,7 @@
|
|
|
import {Fragment} from 'react';
|
|
|
import styled from '@emotion/styled';
|
|
|
|
|
|
-import {Alert} from 'sentry/components/alert';
|
|
|
+import {Alert, AlertProps} from 'sentry/components/alert';
|
|
|
import {Button} from 'sentry/components/button';
|
|
|
import TimeSince from 'sentry/components/timeSince';
|
|
|
import {t, tct, tn} from 'sentry/locale';
|
|
@@ -20,7 +20,7 @@ function ProcessingIssueHint({orgId, projectId, issue, showProject}: Props) {
|
|
|
let showButton = false;
|
|
|
let text = '';
|
|
|
let lastEvent: React.ReactNode = null;
|
|
|
- let alertType: React.ComponentProps<typeof Alert>['type'] = 'error';
|
|
|
+ let alertType: AlertProps['type'] = 'error';
|
|
|
|
|
|
let project: React.ReactNode = null;
|
|
|
if (showProject) {
|