From e38ec7961818388cb9b26347342057fe3031cd21 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 18 Oct 2025 02:50:05 +0200 Subject: [PATCH] remove quote --- backend/api/src/create-profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/src/create-profile.ts b/backend/api/src/create-profile.ts index ba5c0077..8a5bf04b 100644 --- a/backend/api/src/create-profile.ts +++ b/backend/api/src/create-profile.ts @@ -53,7 +53,7 @@ export const createProfile: APIHandler<'create-profile'> = async (body, auth) => let message: string = `[**${user.name}**](https://www.compassmeet.com/${user.username}) just created a profile` if (body.bio) { const bioText = jsonToMarkdown(body.bio) - if (bioText) message += `\n > ${bioText}` + if (bioText) message += `\n${bioText}` } await sendDiscordMessage(message, 'members') } catch (e) {