remove quote

This commit is contained in:
MartinBraquet
2025-10-18 02:50:05 +02:00
parent 1ef125db12
commit e38ec79618

View File

@@ -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) {