diff options
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/Onboarding/StepFinished.tsx | 4 | ||||
-rw-r--r-- | src/screens/Onboarding/StepInterests/index.tsx | 6 | ||||
-rw-r--r-- | src/screens/Onboarding/StepProfile/index.tsx | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index b30f61053..fa45baa65 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -305,8 +305,8 @@ export function StepFinished() { <Button disabled={saving} key={state.activeStep} // remove focus state on nav - variant="gradient" - color="gradient_sky" + variant="solid" + color="primary" size="large" label={_(msg`Complete onboarding and start using your account`)} onPress={finishOnboarding}> diff --git a/src/screens/Onboarding/StepInterests/index.tsx b/src/screens/Onboarding/StepInterests/index.tsx index 2f41433aa..2a121cac6 100644 --- a/src/screens/Onboarding/StepInterests/index.tsx +++ b/src/screens/Onboarding/StepInterests/index.tsx @@ -15,7 +15,7 @@ import { TitleText, } from '#/screens/Onboarding/Layout' import { - ApiResponseMap, + type ApiResponseMap, Context, useInterestsDisplayNames, } from '#/screens/Onboarding/state' @@ -235,8 +235,8 @@ export function StepInterests() { ) : ( <Button disabled={saving || !data} - variant="gradient" - color="gradient_sky" + variant="solid" + color="primary" size="large" label={_(msg`Continue to next step`)} onPress={saveInterests}> diff --git a/src/screens/Onboarding/StepProfile/index.tsx b/src/screens/Onboarding/StepProfile/index.tsx index 3d2c551e9..555507689 100644 --- a/src/screens/Onboarding/StepProfile/index.tsx +++ b/src/screens/Onboarding/StepProfile/index.tsx @@ -267,8 +267,8 @@ export function StepProfile() { <OnboardingControls.Portal> <View style={[a.gap_md, gtMobile && {flexDirection: 'row-reverse'}]}> <Button - variant="gradient" - color="gradient_sky" + variant="solid" + color="primary" size="large" label={_(msg`Continue to next step`)} onPress={onContinue}> |