Add security to device config store

This commit is contained in:
Tilen Komel
2024-08-20 17:18:55 +02:00
parent be9169f56f
commit f64b96527e

View File

@@ -191,6 +191,9 @@ export const useDeviceStore = create<DeviceState>((set, get) => ({
device.config.bluetooth = config.payloadVariant.value;
break;
}
case "security": {
device.config.security = config.payloadVariant.value;
}
}
}
}),