mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
fix: now only one onboarding screen will be shown at time (#8290)
Makes the button more clear. Now both **onboarding** started and **onboarding finished** screens will not be shown in the same time.
This commit is contained in:
parent
28edadd507
commit
ee9f8c8836
@ -170,7 +170,7 @@ export const ConnectSdkDialog = ({
|
|||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
<Button variant='contained' onClick={onFinish}>
|
<Button variant='contained' onClick={onFinish}>
|
||||||
Next
|
Complete
|
||||||
</Button>
|
</Button>
|
||||||
</NextStepSectionSpacedContainer>
|
</NextStepSectionSpacedContainer>
|
||||||
</Navigation>
|
</Navigation>
|
||||||
|
@ -430,7 +430,9 @@ export const ProjectFeatureToggles = ({
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<ConditionallyRender
|
<ConditionallyRender
|
||||||
condition={setupCompletedState === 'show-setup'}
|
condition={
|
||||||
|
setupCompletedState === 'show-setup' && !isOnboarding
|
||||||
|
}
|
||||||
show={
|
show={
|
||||||
<ProjectOnboarded
|
<ProjectOnboarded
|
||||||
projectId={projectId}
|
projectId={projectId}
|
||||||
|
Loading…
Reference in New Issue
Block a user