From 4ec2927b0d6e4f912d1989e6ab13e19147b742e1 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 12 Jun 2024 00:26:29 -0700 Subject: [PATCH] dont show your own name --- src/screens/StarterPack/Wizard/State.tsx | 2 +- src/screens/StarterPack/Wizard/index.tsx | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/screens/StarterPack/Wizard/State.tsx b/src/screens/StarterPack/Wizard/State.tsx index fc56b68b71..abbacc0e9b 100644 --- a/src/screens/StarterPack/Wizard/State.tsx +++ b/src/screens/StarterPack/Wizard/State.tsx @@ -126,7 +126,7 @@ export function Provider({ } return { - canNext: false, + canNext: true, currentStep: 'Details', profiles: [profile], feeds: [], diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index 6d0b80b4dd..237fde568c 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -551,7 +551,10 @@ function Footer({ const editDialogControl = useDialogControl() const {bottom: bottomInset} = useSafeAreaInsets() - const items = state.currentStep === 'Profiles' ? state.profiles : state.feeds + const items = + state.currentStep === 'Profiles' + ? [...state.profiles.slice(1), state.profiles[0]] + : state.feeds const isEditEnabled = (state.currentStep === 'Profiles' && items.length > 1) ||