File tree Expand file tree Collapse file tree
packages/ui/src/components/ConfigureSSO/steps Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
208207type ContinueTestSsoStepButtonProps = {
209208 enterpriseConnectionId : string | undefined ;
210- isConnectionActive : boolean | undefined ;
211209 onContinue : ( ) => void ;
212210} ;
213211
214212const ContinueTestSsoStepButton = ( {
215213 enterpriseConnectionId,
216- isConnectionActive,
217214 onContinue,
218215} : ContinueTestSsoStepButtonProps ) : JSX . Element => {
219216 const { user } = useUser ( ) ;
You can’t perform that action at this time.
0 commit comments