Skip to content

Commit efea5dd

Browse files
committed
fix(clerk-js): standardize Flow.Part prop name from 'choose-wallet' to 'chooseWallet'
Signed-off-by: Kenton Duprey <kenton@clerk.dev>
1 parent 482a49b commit efea5dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/clerk-js/src/ui/components/SignIn/SignInFactorOneSolanaWalletsCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const SignInFactorOneSolanaWalletsCardInner = () => {
2929
};
3030

3131
return (
32-
<Flow.Part part='choose-wallet'>
32+
<Flow.Part part='chooseWallet'>
3333
<Card.Root>
3434
<Card.Content>
3535
<Header.Root showLogo>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const SignUpStartSolanaWalletsCardInner = () => {
2929
};
3030

3131
return (
32-
<Flow.Part part='choose-wallet'>
32+
<Flow.Part part='chooseWallet'>
3333
<Card.Root>
3434
<Card.Content>
3535
<Header.Root showLogo>

packages/clerk-js/src/ui/elements/contexts/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export type FlowMetadata = {
129129
| 'accountSwitcher'
130130
| 'chooseOrganization'
131131
| 'enterpriseConnections'
132-
| 'choose-wallet';
132+
| 'chooseWallet';
133133
};
134134

135135
const [FlowMetadataCtx, useFlowMetadata] = createContextAndHook<FlowMetadata>('FlowMetadata');

0 commit comments

Comments
 (0)