Skip to content

Commit 4a74685

Browse files
committed
move release notes inside of private route
1 parent 73e2d0b commit 4a74685

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/pages/_app.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,11 @@ const App = (props) => {
299299
<RTL direction={settings.direction}>
300300
<CssBaseline />
301301
<ErrorBoundary FallbackComponent={Error500}>
302-
<ReleaseNotesProvider>
303-
<PrivateRoute>{getLayout(<Component {...pageProps} />)}</PrivateRoute>
304-
</ReleaseNotesProvider>
302+
<PrivateRoute>
303+
<ReleaseNotesProvider>
304+
{getLayout(<Component {...pageProps} />)}
305+
</ReleaseNotesProvider>
306+
</PrivateRoute>
305307
</ErrorBoundary>
306308
<Toaster position="top-center" />
307309
<CippSpeedDial

0 commit comments

Comments
 (0)