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
  • Loading branch information
Fran McDade authored and Fran McDade committed Aug 13, 2024
1 parent 4d05cd7 commit 3360971
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 3360971

Please sign in to comment.