Skip to content

Commit

Permalink
fix: fix authentication provider default value for isenabled (#159) (#…
Browse files Browse the repository at this point in the history
…160)

Co-authored-by: Fran McDade <[email protected]>
  • Loading branch information
frano-m and Fran McDade authored Aug 13, 2024
1 parent 4d05cd7 commit 35ef33f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/authentication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const AuthContext = createContext<AuthContextProps>({
authenticateUser: () => {},
authenticationStatus: AUTHENTICATION_STATUS.INCOMPLETE,
isAuthenticated: false,
isEnabled: true,
isEnabled: false,
// eslint-disable-next-line @typescript-eslint/no-empty-function -- allow dummy function for default state.
requestAuthentication: () => {},
terraNIHProfileLoginStatus:
Expand Down

0 comments on commit 35ef33f

Please sign in to comment.