Skip to content

Commit

Permalink
Fix email type
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraBeatris committed Mar 26, 2024
1 parent 6c82feb commit e40ed85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export type AuthenticationEventType =

export type AuthenticationEvent = {
type: AuthenticationEventType;
email?: string;
email?: string | null;
ipAddress: string | null;
userAgent: string | null;
userId: string | null;
Expand All @@ -22,7 +22,7 @@ export type AuthenticationEvent = {

export interface AuthenticationEventResponse {
type: AuthenticationEventType;
email?: string;
email?: string | null;
ip_address: string | null;
user_agent: string | null;
user_id: string | null;
Expand Down

0 comments on commit e40ed85

Please sign in to comment.