Fixes reset of group name when not saving profile (#24000)

This commit is contained in:
Cheena Malhotra
2023-08-01 23:29:09 -07:00
committed by GitHub
parent 7662d425cf
commit 72873f7628
4 changed files with 42 additions and 15 deletions

View File

@@ -179,3 +179,7 @@ export function adjustForMssqlAppName(currentAppName: string, suffix?: string):
? currentAppName + finalSuffix
: currentAppName ?? appName;
}
export function delay(time: number): Promise<void> {
return new Promise(resolve => setTimeout(resolve, time));
}