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;