Skip to content

Commit 0a8f3f3

Browse files
committed
Add changeset
1 parent 5d1d4ed commit 0a8f3f3

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.changeset/fancy-zoos-mate.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+
Fix attribute statement section in `<ConfigureSSO />` with claim name for Custom SAML provider

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ export const TestConfigurationStep = (): JSX.Element => {
196196
<Step.Footer.Previous onClick={() => goPrev()} />
197197
<ContinueTestSsoStepButton
198198
enterpriseConnectionId={enterpriseConnection?.id}
199-
isConnectionActive={enterpriseConnection?.active}
200199
onContinue={() => void goNext()}
201200
/>
202201
</Step.Footer>
@@ -207,13 +206,11 @@ export const TestConfigurationStep = (): JSX.Element => {
207206

208207
type ContinueTestSsoStepButtonProps = {
209208
enterpriseConnectionId: string | undefined;
210-
isConnectionActive: boolean | undefined;
211209
onContinue: () => void;
212210
};
213211

214212
const ContinueTestSsoStepButton = ({
215213
enterpriseConnectionId,
216-
isConnectionActive,
217214
onContinue,
218215
}: ContinueTestSsoStepButtonProps): JSX.Element => {
219216
const { user } = useUser();

0 commit comments

Comments
 (0)