Fix/redact bug (#6048)

This commit is contained in:
Reece Browne
2026-04-02 17:39:45 +01:00
committed by GitHub
parent de9625942b
commit 0adcbeedf1
10 changed files with 180 additions and 142 deletions
@@ -1,5 +1,6 @@
import { ReactNode } from 'react';
import { useBanner } from '@app/contexts/BannerContext';
import NavigationWarningModal from '@app/components/shared/NavigationWarningModal';
interface AppLayoutProps {
children: ReactNode;
@@ -26,6 +27,7 @@ export function AppLayout({ children }: AppLayoutProps) {
{children}
</div>
</div>
<NavigationWarningModal />
</>
);
}