Skip to content

Commit 8f363d2

Browse files
committed
chore: reanimated 버전업
1 parent 5c8c05b commit 8f363d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Button/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface ButtonProps {
2020
}
2121

2222
export function Button(props: ButtonProps) {
23-
const { text, onPress, round = 'small', style } = props;
23+
const { text, onPress, round = 'small', style = {} } = props;
2424

2525
const sharedOpacity = useSharedValue(1);
2626
const animatedStyle = useAnimatedStyle(() => ({

src/components/Select/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function Select(props: SelectProps) {
2323
const {
2424
autoOptionsOpen = false,
2525
width = 'auto',
26-
style,
26+
style = {},
2727
options,
2828
onPress,
2929
onSelect,

0 commit comments

Comments
 (0)