about summary refs log tree commit diff
path: root/src/screens/StarterPack/Wizard
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-02-28 14:50:44 -0800
committerGitHub <noreply@github.com>2025-02-28 14:50:44 -0800
commit9e59a2eef2f82511a9a9a056dbdb0c62fe2f61c6 (patch)
tree1ef1c0af41a89609c921f48a39defa23cf9faa87 /src/screens/StarterPack/Wizard
parent462708e207627971f68b603e61ad70c5d6953cff (diff)
downloadvoidsky-9e59a2eef2f82511a9a9a056dbdb0c62fe2f61c6.tar.zst
Fix starter pack layout (#7869)
Diffstat (limited to 'src/screens/StarterPack/Wizard')
-rw-r--r--src/screens/StarterPack/Wizard/index.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx
index 92cad2f65..deb191f1a 100644
--- a/src/screens/StarterPack/Wizard/index.tsx
+++ b/src/screens/StarterPack/Wizard/index.tsx
@@ -41,7 +41,6 @@ import {useSession} from '#/state/session'
 import {useSetMinimalShellMode} from '#/state/shell'
 import * as Toast from '#/view/com/util/Toast'
 import {UserAvatar} from '#/view/com/util/UserAvatar'
-import {CenteredView} from '#/view/com/util/Views'
 import {useWizardState, WizardStep} from '#/screens/StarterPack/Wizard/State'
 import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails'
 import {StepFeeds} from '#/screens/StarterPack/Wizard/StepFeeds'
@@ -281,7 +280,7 @@ function WizardInner({
   }
 
   return (
-    <CenteredView style={[a.flex_1]} sideBorders>
+    <Layout.Center style={[a.flex_1]}>
       <Layout.Header.Outer>
         <Layout.Header.BackButton
           label={_(msg`Back`)}
@@ -319,7 +318,7 @@ function WizardInner({
           profile={profile}
         />
       )}
-    </CenteredView>
+    </Layout.Center>
   )
 }