We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 871f932 commit 632fa58Copy full SHA for 632fa58
src/api/functions/entraId.ts
@@ -751,7 +751,7 @@ export async function createM365Group(
751
const groupSuffix = environmentConfig[runEnvironment].GroupSuffix;
752
const groupEmailSuffix = environmentConfig[runEnvironment].GroupEmailSuffix;
753
const [localPart, _] = groupEmailSuffix.split("@");
754
- const safeMailNickname = `${mailNickname.toLowerCase().replace(/\s/g, "")}-${localPart}`;
+ const safeMailNickname = `${mailNickname.toLowerCase().replace(/\s/g, "")}${localPart}`;
755
const groupName = `${displayName} ${groupSuffix}`;
756
757
try {
0 commit comments