diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx
index cc2cffc5e7..ab33dc5e1d 100644
--- a/src/screens/StarterPack/Wizard/index.tsx
+++ b/src/screens/StarterPack/Wizard/index.tsx
@@ -247,18 +247,7 @@ function WizardInner() {
- {state.currentStep === 'Details' ? (
-
- ) : (
+ {state.currentStep !== 'Details' && (
)}
@@ -266,7 +255,8 @@ function WizardInner() {
}
function Container({children}: {children: React.ReactNode}) {
- const [state] = useWizardState()
+ const {_} = useLingui()
+ const [state, dispatch] = useWizardState()
if (state.currentStep === 'Profiles' || state.currentStep === 'Feeds') {
return {children}
@@ -275,6 +265,20 @@ function Container({children}: {children: React.ReactNode}) {
return (
{children}
+ {state.currentStep === 'Details' && (
+
+ )}
)
}