Skip to content

Commit 685792e

Browse files
authored
fix(clerk-js): Fix showing alternative phone code provider when no other SSO exists (#5942)
1 parent e4e7c8f commit 685792e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/lazy-mugs-bet.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/clerk-js': patch
3+
---
4+
5+
Fix showing alternative phone code provider when no other SSO exists.

packages/clerk-js/src/ui/components/SignUp/SignUpStart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ function SignUpStartInternal(): JSX.Element {
358358
gap={6}
359359
>
360360
<SocialButtonsReversibleContainerWithDivider>
361-
{(showOauthProviders || showWeb3Providers) && (
361+
{(showOauthProviders || showWeb3Providers || showAlternativePhoneCodeProviders) && (
362362
<SignUpSocialButtons
363363
enableOAuthProviders={showOauthProviders}
364364
enableWeb3Providers={showWeb3Providers}

0 commit comments

Comments
 (0)