From f4d44d1b48ef244b9dd45e63bd610b77e44976fd Mon Sep 17 00:00:00 2001 From: "Justin Kolasa (from Dev Box)" Date: Tue, 22 Apr 2025 13:22:26 -0400 Subject: [PATCH] Prettier run --- src/Explorer/Explorer.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Explorer/Explorer.tsx b/src/Explorer/Explorer.tsx index 4f232f831..fdf3e1e5c 100644 --- a/src/Explorer/Explorer.tsx +++ b/src/Explorer/Explorer.tsx @@ -292,7 +292,9 @@ export default class Explorer { const container = activeTab.collection?.id(); if (!database || !container) { - logConsoleError("Failed to open Visual Studio Code, a database account and container is required to open in VS Code."); + logConsoleError( + "Failed to open Visual Studio Code, a database account and container is required to open in VS Code.", + ); clearInProgressMessage(); return; } @@ -302,7 +304,8 @@ export default class Explorer { try { logConsoleInfo("Opening Visual Studio Code"); - const linkOpened = (navigator.userAgent.includes("Insiders") && window.open(vscodeInsidersUrl)) || window.open(vscodeUrl); + const linkOpened = + (navigator.userAgent.includes("Insiders") && window.open(vscodeInsidersUrl)) || window.open(vscodeUrl); if (!linkOpened) { logConsoleError("Visual Studio Code is not installed on this device");