Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 62d3dce

Browse files
committedSep 19, 2024·
fixup! fixup! fix: Catalog active status
1 parent e8f11ef commit 62d3dce

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎catalog/ui/src/app/Admin/IncidentsPage.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import IncidentsAlertList from './IncidentsAlertList';
44
import LoadingSection from '@app/components/LoadingSection';
55
import useInterfaceConfig from '@app/utils/useInterfaceConfig';
66
import UnexpectedError from '@app/components/UnexpectedError';
7+
import CatalogIncidentsAlertList from './CatalogIncidentsAlertList';
78

89
import './admin.css';
910

@@ -27,6 +28,9 @@ const IncidentsPage: React.FC = () => {
2728
<Suspense fallback={<LoadingSection />}>
2829
<IncidentsAlertList />
2930
</Suspense>
31+
<Suspense fallback={<LoadingSection />}>
32+
<CatalogIncidentsAlertList />
33+
</Suspense>
3034
</PageSection>
3135
</>
3236
);

0 commit comments

Comments
 (0)
Please sign in to comment.