From 6a7ea8c3d1b2ed47cf0e5d567435f9c4ea5e36fb Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 26 Aug 2025 14:58:48 -0500 Subject: [PATCH] Handle layout shift, add Let's Go! text --- src/screens/Onboarding/StepFinished.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index 3ee1fa3d1a..f8040f3a52 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -59,6 +59,7 @@ import { } from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {IconCircle} from '#/components/IconCircle' +import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRight} from '#/components/icons/Arrow' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {Growth_Stroke2_Corner0_Rounded as Growth} from '#/components/icons/Growth' import {News2_Stroke2_Corner0_Rounded as News} from '#/components/icons/News2' @@ -474,9 +475,17 @@ function ValueProposition({ } onPress={onPress}> - {saving ? Finalizing : Next} + {saving ? ( + Finalizing + ) : subStep === 2 ? ( + Let's go! + ) : ( + Next + )} - {saving && } + {subStep === 2 && ( + + )}