From edc1edda5413388849df37edf618328c48bb6178 Mon Sep 17 00:00:00 2001 From: Florence Haudin Date: Wed, 2 Sep 2026 22:47:29 +0200 Subject: [PATCH] Fix typo in the ids of bluetooth-manager-plugin and bluetooth-sidebar-plugin. --- packages/bluetooth-extension/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bluetooth-extension/src/index.ts b/packages/bluetooth-extension/src/index.ts index 10bffeb..074d94c 100644 --- a/packages/bluetooth-extension/src/index.ts +++ b/packages/bluetooth-extension/src/index.ts @@ -20,7 +20,7 @@ export namespace CommandIDs { } const BluetoothManagerPlugin: JupyterFrontEndPlugin = { - id: 'bluetooh-manager:bluetooth-manager-plugin', + id: 'bluetooth-manager:bluetooth-manager-plugin', description: 'Provides the bluetooth manager', provides: IBluetoothManager, autoStart: true, @@ -40,7 +40,7 @@ const BluetoothManagerPlugin: JupyterFrontEndPlugin = { }; const BluetoothSidebarPlugin: JupyterFrontEndPlugin = { - id: 'bluetooh-manager:bluetooth-sidebar-plugin', + id: 'bluetooth-manager:bluetooth-sidebar-plugin', description: 'Provides the connected bluetooth devices dialog to populate the sidebar.', requires: [IRunningSessionManagers, ITranslator, IBluetoothManager],