From 2af17e522fbc16a8d7c3e37cbd5e830eeff38e78 Mon Sep 17 00:00:00 2001 From: philon- Date: Sun, 15 Jun 2025 20:45:01 +0200 Subject: [PATCH] Remove debug logging --- src/core/stores/deviceStore.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/stores/deviceStore.ts b/src/core/stores/deviceStore.ts index 4ab3b4ce..5b8d20c0 100644 --- a/src/core/stores/deviceStore.ts +++ b/src/core/stores/deviceStore.ts @@ -194,7 +194,6 @@ export const useDeviceStore = createStore((set, get) => ({ produce((draft) => { const device = draft.devices.get(id); if (device) { - console.debug("Setting config for device", id, config); switch (config.payloadVariant.case) { case "device": { device.config.device = config.payloadVariant.value;