Reword tooltip when toggling set predictions

Closes #24
This commit is contained in:
Brandon Presley 2022-09-18 18:11:09 +12:00
parent c02456e27c
commit be3bb8a189
1 changed files with 1 additions and 2 deletions

View File

@ -77,8 +77,7 @@ export default function SettingsPage() {
const changePredict = useCallback( const changePredict = useCallback(
(enabled: boolean) => { (enabled: boolean) => {
setPredict(enabled); setPredict(enabled);
if (enabled) if (enabled) toast('Predict your next set based on todays plan.', 4000);
toast('Predicting your next set based on todays plan.', 4000);
else toast('New sets will always be empty.', 4000); else toast('New sets will always be empty.', 4000);
}, },
[setPredict, toast], [setPredict, toast],