diff --git a/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts b/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts index 2e06a74689..ea96a4cfe0 100644 --- a/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts +++ b/packages/react-native-ui-lib/src/components/screenFooter/useAnimatedFooterStyle.ts @@ -27,7 +27,7 @@ const useAnimatedFooterStyle = ( }); const [height, setHeight] = useState(0); - const animatedValue = useSharedValue(animationType === 'fade' && visible ? 1 : 0); + const animatedValue = useSharedValue(animationType !== 'slide' && visible ? 1 : 0); useEffect(() => { if (animationType === 'slide') {