Skip to content

Commit 4728ddb

Browse files
authored
fix(ui): Remove Skip Onboarding (#27457)
Removed the option to skip onboarding because a user would still need to set up a project as a first step anyway.
1 parent 08da8bd commit 4728ddb

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

static/app/views/onboarding/welcome.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,7 @@ class OnboardingWelcome extends Component<Props> {
7878
<PositionedFallingError>{fallingError}</PositionedFallingError>
7979
</CTAContainer>
8080
<SecondaryAction {...fadeAway}>
81-
{tct('[flavorText][br][exitLink:Skip onboarding].', {
82-
br: <br />,
83-
exitLink: <Button priority="link" href="/" />,
84-
flavorText:
85-
fallCount > 0
86-
? easterEggText[fallCount - 1]
87-
: t("Really, this again? I've used Sentry before."),
88-
})}
81+
{fallCount > 0 ? easterEggText[fallCount - 1] : <br />}
8982
</SecondaryAction>
9083
</Wrapper>
9184
)}

0 commit comments

Comments
 (0)