From d6c9da78a0f28da8524fa319b53fd6351f2d8353 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 4 Jun 2024 21:47:50 -0700 Subject: [PATCH] rm a wrapper --- .../StarterPack/Wizard/StepProfiles.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/screens/StarterPack/Wizard/StepProfiles.tsx b/src/screens/StarterPack/Wizard/StepProfiles.tsx index 43211339cc..003a5fb512 100644 --- a/src/screens/StarterPack/Wizard/StepProfiles.tsx +++ b/src/screens/StarterPack/Wizard/StepProfiles.tsx @@ -1,10 +1,9 @@ import React from 'react' -import {ListRenderItemInfo, View} from 'react-native' +import {ListRenderItemInfo} from 'react-native' import {AppBskyActorDefs} from '@atproto/api' import {List} from 'view/com/util/List' import {useWizardState} from '#/screens/StarterPack/Wizard/State' -import {atoms as a} from '#/alf' import {WizardListEmpty} from '#/components/StarterPack/Wizard/WizardListEmpty' import {WizardProfileCard} from '#/components/StarterPack/Wizard/WizardProfileCard' @@ -24,15 +23,11 @@ export function StepProfiles() { } return ( - <> - - } - /> - - + } + /> ) }