Skip to content

Commit

Permalink
make notebooks full screen by default
Browse files Browse the repository at this point in the history
  • Loading branch information
vieiralucas committed Feb 5, 2025
1 parent b98ff02 commit 14ed8ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/hooks/useFullScreenDocument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function useFullScreenDocument(documentId: string): UseFullScreenDocument {
const { data: user } = useSession({ redirectToLogin: true })
const [isFullScreen, setIsFullScreen] = useLocalStorage(
`briefer-user-${user?.id}-doc-${documentId}-fullscreen`,
false
true
)

const toggle = useCallback(() => {
Expand Down

0 comments on commit 14ed8ee

Please sign in to comment.