1
0
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:
Jaanus Sellin 2024-09-27 14:58:03 +03:00 committed by GitHub
parent 28edadd507
commit ee9f8c8836
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -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>

View File

@ -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}