Reword best weight and volume metrics

Previously we didn't have a period selector,
so the description was "Best weight per day"
and "Best volume per day". Now that the user
can also select the period (daily, monthly, yearly)
it doesn't make sense to label them as "per day".
This commit is contained in:
Brandon Presley 2022-10-16 14:36:08 +13:00
parent b89209b852
commit b8c98babe6
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
export enum Metrics {
Weight = 'Best weight per day',
Volume = 'Volume per day',
Weight = 'Best weight',
Volume = 'Volume',
OneRepMax = 'One rep max',
}