From fa9ba408a3cb637396c6aaa77786dedc000e4cad Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 10 Jan 2025 10:08:17 +0530 Subject: [PATCH] T --- web/apps/photos/src/pages/_app.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/apps/photos/src/pages/_app.tsx b/web/apps/photos/src/pages/_app.tsx index ba64c4dc80..b8666ed176 100644 --- a/web/apps/photos/src/pages/_app.tsx +++ b/web/apps/photos/src/pages/_app.tsx @@ -48,7 +48,7 @@ import { NotificationAttributes } from "types/Notification"; import "styles/global.css"; -export default function App({ Component, pageProps }: AppProps) { +const App: React.FC = ({ Component, pageProps }) => { useSetupLogs(); const router = useRouter(); @@ -230,7 +230,9 @@ export default function App({ Component, pageProps }: AppProps) { ); -} +}; + +export default App; const OfflineMessageContainer = styled("div")` background-color: #111;