From ebbecb9738854f8251b78f184dd860cd9fd108b0 Mon Sep 17 00:00:00 2001 From: Faris Armoush Date: Sun, 13 Apr 2025 09:18:09 +0300 Subject: [PATCH] Update toggleCodes in CeilingSensorHelper to replace 'self_test_result' and 'movement' with 'checking_result' and 'body_movement' for improved clarity. --- .../ceiling_sensor/ceiling_sensor_helper.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pages/routines/widgets/routine_dialogs/ceiling_sensor/ceiling_sensor_helper.dart b/lib/pages/routines/widgets/routine_dialogs/ceiling_sensor/ceiling_sensor_helper.dart index 291c2f81..940daf23 100644 --- a/lib/pages/routines/widgets/routine_dialogs/ceiling_sensor/ceiling_sensor_helper.dart +++ b/lib/pages/routines/widgets/routine_dialogs/ceiling_sensor/ceiling_sensor_helper.dart @@ -166,11 +166,11 @@ abstract final class CeilingSensorHelper { static const toggleCodes = { 'radar_switch', 'space_para_switch', - 'self_test_result', + 'checking_result', 'nobody_time', - 'movement', + 'body_movement', 'custom_mode', - 'space_type', + 'scene', 'presence_state', }; }