diff options
author | Eric Bailey <git@esb.lol> | 2025-07-31 10:32:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-31 10:32:16 -0500 |
commit | e87555c4816c14752e944092d373ee53bbc05632 (patch) | |
tree | a54da285cae588a464d47b22d5f658a0771f8b70 /src/screens/Onboarding/StepFinished.tsx | |
parent | 3bcfcba6d8176bac03202b496110915da748b0f1 (diff) | |
download | voidsky-e87555c4816c14752e944092d373ee53bbc05632.tar.zst |
[APP-1310] Button cleanup (#8754)
* Rm gradient buttons from Storybook * TEMP move storybook button section * Remove gradient_sky * Remove actual defs for gradient_sky and gradient_primary * Remove other gradient defs * Remove gradient support entirely * Deprecate 'variant' in favor of 'color' * Fork base styles codepath to make variant deprecation more obvious * Remove text styles for when no color is set, never been used * Fork text styles codepath to make variant deprecation more obvious * Revert temp storybook commit, remove deprecated values * Replace remaining gradient button usage
Diffstat (limited to 'src/screens/Onboarding/StepFinished.tsx')
-rw-r--r-- | src/screens/Onboarding/StepFinished.tsx | 4 |
1 files changed, 2 insertions, 2 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}> |