Skip to content

Commit bdb537a

Browse files
authoredJan 23, 2025··
feat(clerk-js,localizations,types): Add optional combined flow signup start title (#4983)
1 parent 9867924 commit bdb537a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+52
-1
lines changed
 

‎.changeset/wicked-squids-judge.md

+7

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,11 @@ function _SignUpStart(): JSX.Element {
282282
<Card.Root>
283283
<Card.Content>
284284
<Header.Root showLogo>
285-
<Header.Title localizationKey={localizationKeys('signUp.start.title')} />
285+
<Header.Title
286+
localizationKey={
287+
isCombinedFlow ? localizationKeys('signUp.start.titleCombined') : localizationKeys('signUp.start.title')
288+
}
289+
/>
286290
<Header.Subtitle localizationKey={localizationKeys('signUp.start.subtitle')} />
287291
</Header.Root>
288292
<Card.Alert>{card.error}</Card.Alert>

0 commit comments

Comments
 (0)
Please sign in to comment.