Skip to content

Commit

Permalink
type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Nov 20, 2024
1 parent 3e79ede commit de4692e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import IconLogout from '~icons/material-symbols/logout';
import IconLight from '~icons/material-symbols/light-mode';
import IconDark from '~icons/material-symbols/dark-mode';
import { logout, getSession, getMe } from '@taskratchet/sdk';
import { logout, getSession, getMe, type Session } from '@taskratchet/sdk';
let session = null;
let session: Session | undefined;
let email = '';
let pathname = '';
let isDark = false;
Expand Down

0 comments on commit de4692e

Please sign in to comment.