From 4cd4c55c6beef04492a17275584313b2db2f4f20 Mon Sep 17 00:00:00 2001 From: Brett Saviano Date: Wed, 29 May 2024 13:34:13 -0400 Subject: [PATCH] Update getPortalUriWithToken.ts --- src/api/getPortalUriWithToken.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/getPortalUriWithToken.ts b/src/api/getPortalUriWithToken.ts index a7df51c..904a9ea 100644 --- a/src/api/getPortalUriWithToken.ts +++ b/src/api/getPortalUriWithToken.ts @@ -49,7 +49,7 @@ export async function getPortalUriWithToken( simpleBrowserCompatible.set(name, false); } else if (appsRequiringCookie.length > 1) { - vscode.window.showWarningMessage(`Portal web apps cannot be used in the Simple Browser tab if their 'UseCookies' property is set to 'Always' (the default). To resolve this, use Portal's security section to change it to 'Autodetect' in these apps: ${appsRequiringCookie.join(", ")}`, { modal: true }); + vscode.window.showWarningMessage(`Portal web apps cannot be used in the Simple Browser tab if their 'UseCookies' property is set to 'Always' (the default). To resolve this, use Portal's security section to change it to 'Autodetect' in these apps: ${appsRequiringCookie.slice(0, -1).join(", ")}`, { modal: true }); } else { simpleBrowserCompatible.set(name, true);