From 8d87694e0089c955a424e03465ae7ef356a489cb Mon Sep 17 00:00:00 2001 From: katty barroso Date: Tue, 29 Oct 2024 10:27:10 +0100 Subject: [PATCH] Fix loading on page --- centrifuge-app/src/components/LayoutBase/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/centrifuge-app/src/components/LayoutBase/index.tsx b/centrifuge-app/src/components/LayoutBase/index.tsx index cd2eca400e..6a69d0e039 100644 --- a/centrifuge-app/src/components/LayoutBase/index.tsx +++ b/centrifuge-app/src/components/LayoutBase/index.tsx @@ -4,6 +4,7 @@ import * as React from 'react' import { Outlet } from 'react-router' import { useIsAboveBreakpoint } from '../../utils/useIsAboveBreakpoint' import { Footer } from '../Footer' +import { LoadBoundary } from '../LoadBoundary' import { LogoLink } from '../LogoLink-deprecated' import { Menu } from '../Menu' import { BasePadding } from './BasePadding' @@ -57,7 +58,9 @@ export function LayoutBase(): JSX.Element { )} {/* The ID functions so we can deactive scrolling in certain pages, example in the data page */} - + + + )