diff --git a/web/apps/accounts/src/pages/_app.tsx b/web/apps/accounts/src/pages/_app.tsx index 2cbd5b488d..4a7bcc4416 100644 --- a/web/apps/accounts/src/pages/_app.tsx +++ b/web/apps/accounts/src/pages/_app.tsx @@ -38,21 +38,18 @@ const App: React.FC = ({ Component, pageProps }) => { const title = isI18nReady ? t("title_accounts") : staticAppTitle; return ( - <> + + + - - - - - - - {!isI18nReady && } - {isI18nReady && } - - - - + + + {!isI18nReady && } + {isI18nReady && } + + + ); }; diff --git a/web/apps/auth/src/pages/_app.tsx b/web/apps/auth/src/pages/_app.tsx index 9879b4709e..143292aa67 100644 --- a/web/apps/auth/src/pages/_app.tsx +++ b/web/apps/auth/src/pages/_app.tsx @@ -59,30 +59,24 @@ const App: React.FC = ({ Component, pageProps }) => { const title = isI18nReady ? t("title_auth") : staticAppTitle; return ( - <> + + + - - - - - - - - {!isI18nReady ? ( - - ) : ( - <> - {isChangingRoute && ( - - )} - - - )} - - - - + + + {!isI18nReady ? ( + + ) : ( + <> + {isChangingRoute && } + + + )} + + + ); }; diff --git a/web/apps/cast/src/pages/_app.tsx b/web/apps/cast/src/pages/_app.tsx index 61c0af1341..3f3b8198e6 100644 --- a/web/apps/cast/src/pages/_app.tsx +++ b/web/apps/cast/src/pages/_app.tsx @@ -10,15 +10,14 @@ import React from "react"; const App: React.FC = ({ Component, pageProps }) => { useSetupLogs({ disableDiskLogs: true }); - return ( - <> - + // We don't provide BaseContext. Nothing in the cast app needs it yet. - - - - - + return ( + + + + + ); }; diff --git a/web/apps/photos/src/pages/_app.tsx b/web/apps/photos/src/pages/_app.tsx index 2b4f753a07..3d1c8c47d8 100644 --- a/web/apps/photos/src/pages/_app.tsx +++ b/web/apps/photos/src/pages/_app.tsx @@ -187,37 +187,32 @@ const App: React.FC = ({ Component, pageProps }) => { const title = isI18nReady ? t("title_photos") : staticAppTitle; return ( - <> + + + - - - + - + - - - {isDesktop && {title}} - - - {!isI18nReady ? ( - - ) : ( - <> - {isChangingRoute && ( - - )} - - - )} - - - - + {isDesktop && {title}} + + + {!isI18nReady ? ( + + ) : ( + <> + {isChangingRoute && } + + + )} + + + ); };