Skip to content

Commit

Permalink
fix typo incorrect (kysely-org#1068)
Browse files Browse the repository at this point in the history
  • Loading branch information
zce authored and thecodrr committed Sep 3, 2024
1 parent 2808ffe commit 55bc697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/src/util/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type AuthenticationErrors =

export type UserApiErrors = 'InvalidUser' | 'UserNotFound'

export type SignInMethodApiErros =
export type SignInMethodApiErrors =
| 'InvalidSignInMethod'
| 'UserAlreadyHasSignInMethod'
| 'PasswordTooWeak'
Expand All @@ -21,7 +21,7 @@ export type ErrorCode =
| 'UnknownError'
| AuthenticationErrors
| UserApiErrors
| SignInMethodApiErros
| SignInMethodApiErrors

export type ErrorStatus = 400 | 401 | 403 | 404 | 409 | 500

Expand Down

0 comments on commit 55bc697

Please sign in to comment.