Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
farhoudshapouran committed Nov 1, 2023
1 parent 576a598 commit 077ac26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export default function App() {
fontWeight: 'bold',
color: theme?.activeTextColor,
}}
// eslint-disable-next-line react-native/no-inline-styles
todayContainerStyle={{
borderWidth: 1,
}}
Expand Down
2 changes: 1 addition & 1 deletion src/components/TimeSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const TimeSelector = () => {
minute: utils.getDateMinute(selectedDate),
hour: utils.getDateHour(selectedDate),
});
}, [selectedDate, utils]);
}, [selectedDate]);

return (
<View style={styles.container}>
Expand Down

0 comments on commit 077ac26

Please sign in to comment.