We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576a598 commit 077ac26Copy full SHA for 077ac26
example/src/App.tsx
@@ -68,6 +68,7 @@ export default function App() {
68
fontWeight: 'bold',
69
color: theme?.activeTextColor,
70
}}
71
+ // eslint-disable-next-line react-native/no-inline-styles
72
todayContainerStyle={{
73
borderWidth: 1,
74
src/components/TimeSelector.tsx
@@ -22,7 +22,7 @@ const TimeSelector = () => {
22
minute: utils.getDateMinute(selectedDate),
23
hour: utils.getDateHour(selectedDate),
24
});
25
- }, [selectedDate, utils]);
+ }, [selectedDate]);
26
27
return (
28
<View style={styles.container}>
0 commit comments