From 211bc39de6b0897b5ff805bf3bed831b98f91a86 Mon Sep 17 00:00:00 2001 From: Juri Wolf Date: Thu, 28 Mar 2024 16:43:11 +0100 Subject: [PATCH] Fix optional config settings Fixes the nesting of optional config. Optional config is required to make sure switches in the project settings are reflecting the state of Bluetooth. --- pxt.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pxt.json b/pxt.json index 67dad39be..83a0501c2 100644 --- a/pxt.json +++ b/pxt.json @@ -112,12 +112,12 @@ "bluetooth": { "enabled": 0 } - }, - "optionalConfig": { - "microbit-dal": { - "bluetooth": { - "enabled": 0 - } + } + }, + "optionalConfig": { + "microbit-dal": { + "bluetooth": { + "enabled": 0 } } }