From 2e283181ba750ae3556e679ce42238971556258a Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:33:20 -0500 Subject: [PATCH] spelling: activity Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/apps/system_apps/health/health_card_view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/apps/system_apps/health/health_card_view.c b/src/fw/apps/system_apps/health/health_card_view.c index 2d1f2cfb..396c666c 100644 --- a/src/fw/apps/system_apps/health/health_card_view.c +++ b/src/fw/apps/system_apps/health/health_card_view.c @@ -103,7 +103,7 @@ static int prv_get_next_card_idx(Card current, bool up) { if (next == Card_HrSummary && !activity_is_hrm_present()) { next = next + direction; } - // if heart rate is diabled, change the order of cards to Activiy <-> Sleep <-> HR + // if heart rate is diabled, change the order of cards to Activity <-> Sleep <-> HR else if (activity_is_hrm_present() && !activity_prefs_heart_rate_is_enabled()) { if (current == Card_ActivitySummary) { next = up ? Card_SleepSummary : BACK_TO_WATCHFACE;