diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index ab33dc5e1d..f75a83afcc 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -12,7 +12,7 @@ import {NativeStackScreenProps} from '@react-navigation/native-stack' import {HITSLOP_10} from 'lib/constants' import {CommonNavigatorParams, NavigationProp} from 'lib/routes/types' import {enforceLen} from 'lib/strings/helpers' -import {isAndroid, isWeb} from 'platform/detection' +import {isAndroid, isNative, isWeb} from 'platform/detection' import {useProfileQuery} from 'state/queries/profile' import {useAgent, useSession} from 'state/session' import {useSetMinimalShellMode} from 'state/shell' @@ -315,21 +315,25 @@ function Footer({ {items.slice(0, 5).map((p, index) => ( @@ -431,7 +435,6 @@ function Footer({ } function getName(item: AppBskyActorDefs.ProfileViewBasic | GeneratorView) { - // TODO hack for now since these are not full profiles and wont validate if (typeof item.displayName === 'string') { return enforceLen(item.displayName, 16, true) } else if (typeof item.handle === 'string') {