Fix hint display on chart

This commit is contained in:
bl00dymarie
2023-07-17 17:13:56 +02:00
parent 714021465e
commit bcc7eaada9
+1 -1
View File
@@ -29,7 +29,7 @@ const getSymptomsFromCycleDays = (cycleDays) =>
SYMPTOMS.filter((symptom) => cycleDays.some((cycleDay) => cycleDay[symptom]))
const CycleChart = ({ navigate, setDate }) => {
const [shouldShowHint, setShouldShowHint] = useState(true)
const [shouldShowHint, setShouldShowHint] = useState(false)
useEffect(() => {
let isMounted = true