Skip to content

Commit

Permalink
fix: now only one onboarding screen will be shown at time
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Sep 27, 2024
1 parent 28edadd commit 3818779
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const ConnectSdkDialog = ({
) : null}

<Button variant='contained' onClick={onFinish}>
Next
Complete
</Button>
</NextStepSectionSpacedContainer>
</Navigation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,9 @@ export const ProjectFeatureToggles = ({
}
/>
<ConditionallyRender
condition={setupCompletedState === 'show-setup'}
condition={
setupCompletedState === 'show-setup' && !isOnboarding
}
show={
<ProjectOnboarded
projectId={projectId}
Expand Down

0 comments on commit 3818779

Please sign in to comment.