Skip to content

Commit

Permalink
Update nullable properties
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraBeatris committed Mar 26, 2024
1 parent e40ed85 commit b972c1d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export type AuthenticationEvent = {

export interface AuthenticationEventResponse {
type: AuthenticationEventType;
email?: string | null;
email: string | null;
ip_address: string | null;
user_agent: string | null;
user_id: string | null;
error?: AuthenticationEventError;
error: AuthenticationEventError | null;
}

0 comments on commit b972c1d

Please sign in to comment.