Skip to content

Commit

Permalink
fix: coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
MellyGray committed Feb 9, 2024
1 parent a5a8509 commit 460304c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sections/session/SessionContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ interface SessionContextProps {
}
export const SessionContext = createContext<SessionContextProps>({
user: null,
setUser: () => {},
logout: () => Promise.resolve()
setUser: /* istanbul ignore next */ () => {},
logout: /* istanbul ignore next */ () => Promise.resolve()
})

export const useSession = () => useContext(SessionContext)

0 comments on commit 460304c

Please sign in to comment.