Reword "maximum" as "target" for sets

There isn't any restriction involved in the sets
for each workout, it's more like a guide.
This commit is contained in:
Brandon Presley 2022-10-31 21:00:53 +13:00
parent bdb27894f7
commit 13ca9cef3e
1 changed files with 2 additions and 2 deletions

View File

@ -121,8 +121,8 @@ export default function SettingsPage() {
const changeShowSets = useCallback(
(enabled: boolean) => {
update(enabled, 'showSets')
if (enabled) toast('Show maximum sets for workouts.', 4000)
else toast('Stopped showing maximum sets for workouts.', 4000)
if (enabled) toast('Show target sets for workouts.', 4000)
else toast('Stopped showing target sets for workouts.', 4000)
},
[toast, update],
)