Skip to content

Commit

Permalink
moved GDPR banner to after page content (#3761)
Browse files Browse the repository at this point in the history
  • Loading branch information
evwilkin authored Sep 22, 2023
1 parent 04ebd7f commit 54cd9b3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,6 @@ export const SideNavLayout = ({ children, groupedRoutes, navOpen: navOpenProp })
return (
<React.Fragment>
<RtlContext.Provider value={ isRTL }>
<div id="ws-page-banners">
{hasGdprBanner && <GdprBanner />}
</div>
<Page
id="ws-page"
mainContainerId="ws-page-main"
Expand All @@ -284,6 +281,9 @@ export const SideNavLayout = ({ children, groupedRoutes, navOpen: navOpenProp })
>
{children}
</Page>
<div id="ws-page-banners">
{hasGdprBanner && <GdprBanner />}
</div>
</RtlContext.Provider>
</React.Fragment>
);
Expand Down

0 comments on commit 54cd9b3

Please sign in to comment.