Skip to content

Commit

Permalink
fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
mariovyord committed Dec 15, 2023
1 parent f84834e commit ae0d32a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/user/user-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface IUser {
password: string;
firstName: string;
lastName: string;
comparePassword: (password: string) => boolean;
comparePassword: (password: string) => Promise<boolean>;
}

export interface SignUpUserData {
Expand Down

0 comments on commit ae0d32a

Please sign in to comment.