From 57da8b02c28f0523e5edb0c2a2ed74366f7db49d Mon Sep 17 00:00:00 2001 From: spinline Date: Wed, 4 Feb 2026 17:50:50 +0300 Subject: [PATCH] fix(ui): use standard button role for iOS overlays and escalate debug logs --- frontend/src/components/layout/statusbar.rs | 23 +++++++-------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/frontend/src/components/layout/statusbar.rs b/frontend/src/components/layout/statusbar.rs index 97d39c8..1fa4f19 100644 --- a/frontend/src/components/layout/statusbar.rs +++ b/frontend/src/components/layout/statusbar.rs @@ -117,12 +117,9 @@ pub fn StatusBar() -> impl IntoView {
@@ -131,7 +128,7 @@ pub fn StatusBar() -> impl IntoView { limits.clone().into_iter().map(|(val, label)| { let is_active = move || { let current = stats.get().down_limit.unwrap_or(0); - logging::log!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}", + logging::error!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}", current, val, (current - val).abs(), @@ -180,12 +177,9 @@ pub fn StatusBar() -> impl IntoView {
@@ -235,12 +229,9 @@ pub fn StatusBar() -> impl IntoView {