Skip to content

Commit 51f8039

Browse files
committed
Add changeset
1 parent 14bdeb2 commit 51f8039

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

.changeset/public-parts-chew.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'@clerk/localizations': patch
3+
'@clerk/clerk-js': patch
4+
'@clerk/shared': patch
5+
'@clerk/ui': patch
6+
---
7+
8+
Add support for custom SAML provider in `<ConfigureSSO />`

packages/ui/src/components/ConfigureSSO/steps/ConfigureStep.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -328,17 +328,18 @@ export const ConfigureAttributesSubStep = (): JSX.Element => {
328328
const { goNext, goPrev, isFirstStep, isLastStep } = useWizard();
329329

330330
const { provider } = useConfigureSSO();
331-
const { key } = useConfigureStepTranslations();
332331

333332
return (
334333
<>
335334
<Step.Body>
336335
<Step.Section sx={theme => ({ gap: theme.space.$3 })}>
337-
<Heading
338-
as='h3'
339-
textVariant='subtitle'
340-
localizationKey={localizationKeys(key('configureAttributes.title'))}
341-
/>
336+
{provider === 'saml_custom' && (
337+
<Heading
338+
as='h3'
339+
textVariant='subtitle'
340+
localizationKey={localizationKeys('configureSSO.configureStep.samlCustom.configureAttributes.title')}
341+
/>
342+
)}
342343

343344
<Table
344345
sx={theme => ({

0 commit comments

Comments
 (0)