diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-10-28 17:21:24 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-10-28 17:21:24 -0700 |
commit | 7942c684bf4eefa419f2e87cc63dada7b2d29b2d (patch) | |
tree | 025748c30d07d22d44b5eefa76e5ae5273b633cd /src/screens/StarterPack/Wizard/index.tsx | |
parent | 39381e60e742b60a4d52827e17786afe3a11ac1d (diff) | |
parent | 5e947e5a8f5e1b029c4a2253593635c35672e654 (diff) | |
download | voidsky-7942c684bf4eefa419f2e87cc63dada7b2d29b2d.tar.zst |
Merge branch 'main' of github.com:bluesky-social/social-app into main
Diffstat (limited to 'src/screens/StarterPack/Wizard/index.tsx')
-rw-r--r-- | src/screens/StarterPack/Wizard/index.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index f8d503274..9a90a1f51 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -49,7 +49,7 @@ import {useWizardState, WizardStep} from '#/screens/StarterPack/Wizard/State' import {StepDetails} from '#/screens/StarterPack/Wizard/StepDetails' import {StepFeeds} from '#/screens/StarterPack/Wizard/StepFeeds' import {StepProfiles} from '#/screens/StarterPack/Wizard/StepProfiles' -import {atoms as a, useTheme} from '#/alf' +import {atoms as a, useTheme, web} from '#/alf' import {Button, ButtonText} from '#/components/Button' import {useDialogControl} from '#/components/Dialog' import * as Layout from '#/components/Layout' @@ -121,7 +121,9 @@ export function Wizard({ } return ( - <Layout.Screen> + <Layout.Screen + testID="starterPackWizardScreen" + style={web([{minHeight: 0}, a.flex_1])}> <Provider starterPack={starterPack} listItems={listItems}> <WizardInner currentStarterPack={starterPack} |