Skip to content

Commit

Permalink
fix(react-oidc): typings user can be null (release)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-chervet committed Feb 11, 2024
1 parent 7a42de8 commit dbaf602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-oidc/src/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export enum OidcUserStatus {
}

export type OidcUser<T extends OidcUserInfo = OidcUserInfo> = {
user: T;
user: T | null;
status: OidcUserStatus;
}

Expand Down

0 comments on commit dbaf602

Please sign in to comment.