Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Feb 24, 2025
1 parent 380b8fa commit 135bd65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/KeyboardAvoidingView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ const KeyboardAvoidingView = forwardRef<
);

const animatedStyle = useAnimatedStyle(() => {
const bottom = interpolateToRelativeKeyboardHeight(keyboard.progress.value);
const bottom = interpolateToRelativeKeyboardHeight(
keyboard.progress.value,
);
const translateY = interpolateToRelativeKeyboardHeight(translate.value);
const paddingBottom = interpolateToRelativeKeyboardHeight(padding.value);
const bottomHeight = enabled ? bottom : 0;
Expand Down

0 comments on commit 135bd65

Please sign in to comment.