Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua committed Sep 3, 2023
1 parent db9da78 commit a07106b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default function App(props: AppProps<undefined, State>) {
<div class="flex flex-col min-h-screen mx-auto max-w-7xl w-full dark:text-white">
<Header
url={props.url}
sessionUser={props.state.sessionUser}
hasNotifications={props.state.hasNotifications}
sessionUser={props.state?.sessionUser}
hasNotifications={props.state?.hasNotifications}
/>
<props.Component />
<Footer url={props.url} />
Expand Down

0 comments on commit a07106b

Please sign in to comment.