File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -152,10 +152,7 @@ export function OnboardingOption({
152152 isStep ?: boolean ;
153153} ) {
154154 validateOptionIds ( [ { id : optionId } ] ) ;
155- const className = [
156- hideForThisOption ? 'hidden' : '' ,
157- isStep ? 'onboarding-step' : '' ,
158- ]
155+ const className = [ hideForThisOption ? 'hidden' : '' , isStep ? 'onboarding-step' : '' ]
159156 . filter ( Boolean )
160157 . join ( ' ' ) ;
161158
Original file line number Diff line number Diff line change @@ -18,7 +18,11 @@ import {GuideGrid} from './components/guideGrid';
1818import { JsBundleList } from './components/jsBundleList' ;
1919import { LambdaLayerDetail } from './components/lambdaLayerDetail' ;
2020import { LinkWithPlatformIcon } from './components/linkWithPlatformIcon' ;
21- import { OnboardingOption , OnboardingOptionButtons , OnboardingSteps } from './components/onboarding' ;
21+ import {
22+ OnboardingOption ,
23+ OnboardingOptionButtons ,
24+ OnboardingSteps ,
25+ } from './components/onboarding' ;
2226import { OrgAuthTokenNote } from './components/orgAuthTokenNote' ;
2327import { PageGrid } from './components/pageGrid' ;
2428import { ParamTable } from './components/paramTable' ;
You can’t perform that action at this time.
0 commit comments