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) ||