diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index e39e172606..4cd490432d 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -8,9 +8,9 @@ import {NativeStackScreenProps} from '@react-navigation/native-stack' import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' import {CommonNavigatorParams, NavigationProp} from 'lib/routes/types' +import {isAndroid, isWeb} from 'platform/detection' import {useProfileQuery} from 'state/queries/profile' import {useSession} from 'state/session' -import {Text} from 'view/com/util/text/Text' import {CenteredView} from 'view/com/util/Views' import {useWizardState, WizardStep} from '#/screens/StarterPack/Wizard/State' import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails' @@ -20,6 +20,7 @@ import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import {WizardAddDialog} from '#/components/StarterPack/Wizard/WizardAddDialog' +import {Text} from '#/components/Typography' import {Provider} from './State' export function Wizard({ @@ -85,6 +86,7 @@ function WizardInner() { }) }, [navigation]) + // TODO move to state if we keep this const continueIsCta = () => { if (state.currentStep === 'Details') { return true @@ -146,15 +148,20 @@ function WizardInner() { - - + + {state.currentStep !== 'Details' && (