File tree Expand file tree Collapse file tree
ui/src/components/ConfigureSSO Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -433,9 +433,6 @@ export const enUS: LocalizationResource = {
433433 } ,
434434 identityProviderMetadataStep : {
435435 headerSubtitle : 'Configure identity provider metadata' ,
436- label : '' ,
437- placeholder : '' ,
438- description : '' ,
439436 modes : {
440437 title : 'Fill in your Okta SAML application details' ,
441438 ariaLabel : 'Configuration ' ,
Original file line number Diff line number Diff line change 1+ import { Step } from '../Step' ;
2+ import { useWizard } from './index' ;
3+
4+ export const InnerStepCounter = ( ) : JSX . Element => {
5+ const { currentIndex, totalSteps } = useWizard ( ) ;
6+ return (
7+ < Step . Counter
8+ total = { totalSteps }
9+ current = { currentIndex + 1 }
10+ />
11+ ) ;
12+ } ;
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import { handleError } from '@/utils/errorHandler';
2222import { useConfigureSSO } from '../ConfigureSSOContext' ;
2323import { Step } from '../elements/Step' ;
2424import { useWizard , Wizard } from '../elements/Wizard' ;
25+ import { InnerStepCounter } from '../elements/Wizard/InnerStepCounter' ;
2526
2627export const VerifyDomainStep = ( ) : JSX . Element => {
2728 const { user } = useUser ( ) ;
@@ -157,16 +158,6 @@ export const VerifyDomainStep = (): JSX.Element => {
157158 ) ;
158159} ;
159160
160- const InnerStepCounter = ( ) : JSX . Element => {
161- const { currentIndex, totalSteps } = useWizard ( ) ;
162- return (
163- < Step . Counter
164- total = { totalSteps }
165- current = { currentIndex + 1 }
166- />
167- ) ;
168- } ;
169-
170161const isEmail = ( str : string ) => / ^ \S + @ \S + \. \S + $ / . test ( str ) ;
171162
172163type ProvideEmailStepProps = {
You can’t perform that action at this time.
0 commit comments