We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64505ca commit d811400Copy full SHA for d811400
static/app/views/insights/database/views/databaseLandingPage.tsx
@@ -1,5 +1,6 @@
1
import React from 'react';
2
3
+import type {AlertProps} from 'sentry/components/core/alert';
4
import {Alert} from 'sentry/components/core/alert';
5
import * as Layout from 'sentry/components/layouts/thirds';
6
import SearchBar from 'sentry/components/searchBar';
@@ -187,7 +188,7 @@ const DEFAULT_SORT = {
187
188
kind: 'desc' as const,
189
};
190
-function AlertBanner(props: any) {
191
+function AlertBanner(props: Omit<AlertProps, 'type' | 'showIcon'>) {
192
return (
193
<ModuleLayout.Full>
194
<Alert.Container>
0 commit comments