diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx
index 695af1ec28..e4b349915c 100644
--- a/src/screens/StarterPack/Wizard/index.tsx
+++ b/src/screens/StarterPack/Wizard/index.tsx
@@ -559,7 +559,7 @@ function Footer({
t.atoms.bg,
t.atoms.border_contrast_medium,
{
- height: 224,
+ height: isNative ? 224 : 200,
paddingBottom: 20 + bottomInset,
},
isNative && [
@@ -641,54 +641,56 @@ function Footer({
)}
)}
- {state.currentStep === 'Profiles' && items.length < 8 ? (
-
-
- Add {8 - items.length} more{' '}
- to
- continue
-
-
- ) : (
-
- {isEditEnabled ? (
-
- ) : (
-
- )}
+
+
+ {isEditEnabled ? (
+
+ ) : (
+
+ )}
+ {state.currentStep === 'Profiles' && items.length < 8 ? (
+ <>
+
+
+ Add {8 - items.length} more{' '}
+ {' '}
+ to continue
+
+
+
+ >
+ ) : (
-
- )}
+ )}
+