Skip to content

Commit

Permalink
feat: Add 'kakao' to Provider type (#720)
Browse files Browse the repository at this point in the history
## What kind of change does this PR introduce?
This PR adds 'kakao' to `Provider` type.
Kakao provider was recently added to `supabase/gotrue` through this
[PR](supabase/auth#834 has also been
updated. [PR](supabase/supabase#14287))
## What is the current behavior?
IDE warns type error because there is no 'kakao' in `Provider` type.

![image](https://github.com/supabase/gotrue-js/assets/27193396/af8a4071-fc1e-4a3f-b019-3f92e49212dc)


## What is the new behavior?
'kakao' added properly in `Provider` type, so no error shown in IDE

## Additional context
Please let me know if I have to change anything to be approved. Thank
you!
  • Loading branch information
kim-taewoo committed Jul 2, 2023
1 parent 6d0fd5f commit ef16123
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export type Provider =
| 'github'
| 'gitlab'
| 'google'
| 'kakao'
| 'keycloak'
| 'linkedin'
| 'notion'
Expand Down

0 comments on commit ef16123

Please sign in to comment.