Add directions to use AAD login if account blocked from connection (#1683)

string login.
This commit is contained in:
jawelton74
2023-11-01 15:46:54 -07:00
committed by GitHub
parent 1726e4df51
commit 15d111e3db
2 changed files with 4 additions and 2 deletions

View File

@@ -69,7 +69,9 @@ export const ConnectExplorer: React.FunctionComponent<Props> = ({
setErrorMessage("");
if (await isAccountRestrictedForConnectionStringLogin(connectionString)) {
setErrorMessage("This account has been blocked from connection-string login.");
setErrorMessage(
"This account has been blocked from connection-string login. Please go to cosmos.azure.com/aad for AAD based login.",
);
return;
}