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 e8f11ef commit 62d3dceCopy full SHA for 62d3dce
catalog/ui/src/app/Admin/IncidentsPage.tsx
@@ -4,6 +4,7 @@ import IncidentsAlertList from './IncidentsAlertList';
4
import LoadingSection from '@app/components/LoadingSection';
5
import useInterfaceConfig from '@app/utils/useInterfaceConfig';
6
import UnexpectedError from '@app/components/UnexpectedError';
7
+import CatalogIncidentsAlertList from './CatalogIncidentsAlertList';
8
9
import './admin.css';
10
@@ -27,6 +28,9 @@ const IncidentsPage: React.FC = () => {
27
28
<Suspense fallback={<LoadingSection />}>
29
<IncidentsAlertList />
30
</Suspense>
31
+ <Suspense fallback={<LoadingSection />}>
32
+ <CatalogIncidentsAlertList />
33
+ </Suspense>
34
</PageSection>
35
</>
36
);
0 commit comments