rm unused effect

This commit is contained in:
Hailey
2024-06-12 11:51:37 -07:00
parent f5e9fc07d4
commit b01cd9e503
@@ -1,12 +1,11 @@
import React, {useLayoutEffect, useRef} from 'react' import React, {useRef} from 'react'
import type {ListRenderItemInfo, TextInput as RNTextInput} from 'react-native' import type {ListRenderItemInfo} from 'react-native'
import {View} from 'react-native' import {View} from 'react-native'
import {AppBskyActorDefs} from '@atproto/api' import {AppBskyActorDefs} from '@atproto/api'
import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs'
import {BottomSheetFlatListMethods} from '@discord/bottom-sheet' import {BottomSheetFlatListMethods} from '@discord/bottom-sheet'
import {Trans} from '@lingui/macro' import {Trans} from '@lingui/macro'
import {isWeb} from 'platform/detection'
import {useSession} from 'state/session' import {useSession} from 'state/session'
import {WizardAction, WizardState} from '#/screens/StarterPack/Wizard/State' import {WizardAction, WizardState} from '#/screens/StarterPack/Wizard/State'
import {atoms as a, native, useTheme, web} from '#/alf' import {atoms as a, native, useTheme, web} from '#/alf'
@@ -35,7 +34,6 @@ export function WizardEditListDialog({
const t = useTheme() const t = useTheme()
const listRef = useRef<BottomSheetFlatListMethods>(null) const listRef = useRef<BottomSheetFlatListMethods>(null)
const inputRef = useRef<RNTextInput>(null)
const getData = () => { const getData = () => {
if (state.currentStep === 'Feeds') return state.feeds if (state.currentStep === 'Feeds') return state.feeds
@@ -49,14 +47,6 @@ export function WizardEditListDialog({
] ]
} }
useLayoutEffect(() => {
if (isWeb) {
setImmediate(() => {
inputRef?.current?.focus()
})
}
}, [])
const renderItem = ({item}: ListRenderItemInfo<any>) => const renderItem = ({item}: ListRenderItemInfo<any>) =>
state.currentStep === 'Profiles' ? ( state.currentStep === 'Profiles' ? (
<WizardProfileCard profile={item} state={state} dispatch={dispatch} /> <WizardProfileCard profile={item} state={state} dispatch={dispatch} />