We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09abf89 commit 87b2a37Copy full SHA for 87b2a37
1 file changed
src/components/TextField/logic.ts
@@ -188,15 +188,17 @@ const useTextFieldAnimation = ({
188
duration: ANIMATION_DURATION_MS,
189
useNativeDriver: true,
190
}).start();
191
- }, [isFocused, focusProgress]);
+ // eslint-disable-next-line react-hooks/exhaustive-deps
192
+ }, [isFocused]);
193
194
useEffect(() => {
195
Animated.timing(floatingProgress, {
196
toValue: isFloating ? 1 : 0,
197
198
useNativeDriver: false,
199
- }, [isFloating, floatingProgress]);
200
201
+ }, [isFloating]);
202
203
return useMemo(() => {
204
const activeTop =
0 commit comments