6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit bbe45615

AuthorMikkel Thygesen<mikkelet@gmail.com>
Date2026-02-20 10:23:16 +0100
remove print

Changed files

comwell_key_app/lib/connection_state/connection_state_listener.dart | 1 -
 1 file changed, 1 deletion(-)

Diff

diff --git a/comwell_key_app/lib/connection_state/connection_state_listener.dart b/comwell_key_app/lib/connection_state/connection_state_listener.dart
index a5af2c54..e1477f7b 100644
--- a/comwell_key_app/lib/connection_state/connection_state_listener.dart
+++ b/comwell_key_app/lib/connection_state/connection_state_listener.dart
@@ -35,7 +35,6 @@ class _ConnectionStateListenerState extends State<ConnectionStateListener> {
bool shouldShowBluetoothPermissionScreen(AppConnectionState prev, AppConnectionState curr) {
if (prev.isBluetoothEnabled && !curr.isBluetoothEnabled) return true;
if (prev.isBluetoothPermissionGranted && !curr.isBluetoothPermissionGranted) return true;
- print("qqq state=${curr.isBluetoothPermissionGranted}");
return false;
}