Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: prevent flattening style arrays #7021

Merged
merged 12 commits into from
Feb 19, 2025
Prev Previous commit
Next Next commit
chore: sort import order for linter
  • Loading branch information
jpudysz committed Feb 18, 2025
commit 7ddeedbb3535024d4a73d32a38d8bff2ec430356
5 changes: 2 additions & 3 deletions packages/react-native-reanimated/__tests__/props.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ import type { ViewStyle } from 'react-native';
import { Pressable, Text, View } from 'react-native';

import Animated, {
getAnimatedStyle,
interpolate,
interpolateColor,
useAnimatedStyle,
useSharedValue,
getAnimatedStyle
} from '../src';
useSharedValue} from '../src';
import { processBoxShadow } from '../src/processBoxShadow';

const AnimatedPressable = Animated.createAnimatedComponent(Pressable);
Expand Down