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 c9bb8e4 commit 376a635Copy full SHA for 376a635
src/services/codingServer.ts
@@ -181,8 +181,8 @@ export default class CodingServer {
181
const pwd = encryptPassword(password);
182
const emailPrefix = getEmailPrefix(email);
183
const randomNum = Math.random().toString().slice(-5);
184
- const teamName = `dcloud-${emailPrefix}-${randomNum}`;
185
- console.log('teamName ==> ', teamName);
+ const teamName = `dcloud-${emailPrefix}-${randomNum}`.toLowerCase();
+ console.log('teamName: ', teamName);
186
187
const result = await axios({
188
method: 'post',
0 commit comments