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 d9d2949 commit 63e3d50Copy full SHA for 63e3d50
src/controllers/verifyCommand.ts
@@ -23,7 +23,7 @@ export async function verifyCommand(
23
if (response?.status === 201 || response?.status === 200) {
24
const verificationSiteURL = config(env).VERIFICATION_SITE_URL;
25
const message =
26
- `${verificationSiteURL}/discord?token=${token}\n` + VERIFICATION_STRING;
+ `${verificationSiteURL}/discord?token=${token}\n${VERIFICATION_STRING}`;
27
return discordEphemeralResponse(message);
28
} else {
29
return discordEphemeralResponse(RETRY_COMMAND);
0 commit comments