From b8c98babe6fe0166130a01a133acb81cb3dfade5 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sun, 16 Oct 2022 14:36:08 +1300 Subject: [PATCH] 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". --- metrics.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metrics.ts b/metrics.ts index cebda6f..81a9ed3 100644 --- a/metrics.ts +++ b/metrics.ts @@ -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', }