diff options
author | Hailey <me@haileyok.com> | 2024-06-27 22:01:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 22:01:02 -0700 |
commit | 58a97db5b8e9c62d68c4ce6398d1213469ee38b2 (patch) | |
tree | 71a453c546014aa6e6ad5103957678f06328600b /src/screens/Signup/StepInfo/index.tsx | |
parent | 8ebf9cc4b10a620d7698c1b0d0b316729c02dc13 (diff) | |
download | voidsky-58a97db5b8e9c62d68c4ce6398d1213469ee38b2.tar.zst |
Revert animation change in signup (#4693)
Diffstat (limited to 'src/screens/Signup/StepInfo/index.tsx')
-rw-r--r-- | src/screens/Signup/StepInfo/index.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index ea10d4365..691e23a53 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -1,5 +1,5 @@ -import React, {useEffect} from 'react' -import {LayoutAnimation, View} from 'react-native' +import React from 'react' +import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -35,10 +35,6 @@ export function StepInfo({ const {_} = useLingui() const {state, dispatch} = useSignupContext() - useEffect(() => { - LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) - }, [state.isLoading, isLoadingStarterPack]) - return ( <ScreenTransition> <View style={[a.gap_md]}> |