Skip to content

Commit 077ac26

Browse files
author
farhoudshapouran
committed
fix: lint errors
1 parent 576a598 commit 077ac26

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

example/src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export default function App() {
6868
fontWeight: 'bold',
6969
color: theme?.activeTextColor,
7070
}}
71+
// eslint-disable-next-line react-native/no-inline-styles
7172
todayContainerStyle={{
7273
borderWidth: 1,
7374
}}

src/components/TimeSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const TimeSelector = () => {
2222
minute: utils.getDateMinute(selectedDate),
2323
hour: utils.getDateHour(selectedDate),
2424
});
25-
}, [selectedDate, utils]);
25+
}, [selectedDate]);
2626

2727
return (
2828
<View style={styles.container}>

0 commit comments

Comments
 (0)