Skip to content

Commit

Permalink
Update getPortalUriWithToken.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed May 29, 2024
1 parent c92d52d commit 4cd4c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/getPortalUriWithToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4cd4c55

Please sign in to comment.