Skip to content

Commit

Permalink
Update isUserLoggedIn property in PageData interface
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardspresume committed Mar 30, 2024
1 parent cab121d commit e73591a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ declare global {
// interface Locals {}
interface PageData {
pageMetaTags?: MetaTagsProps;
isUserLoggedIn: boolean;
isUserLoggedIn?: boolean;
flash?: { type: 'success' | 'error'; message: string };
}
// interface PageState {}
Expand All @@ -24,4 +24,4 @@ declare global {
}
}

export {};
export { };

0 comments on commit e73591a

Please sign in to comment.