chore: fix typo (#2681)

Signed-off-by: cuithon <dscs@outlook.com>
main
cuithon 2024-03-12 15:58:20 +08:00 committed by GitHub
parent bc30a8bd82
commit 5a9546ec0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ const characterCount = computed(() => {
length -= fullMatch.length - (before + username).length - 1 // - 1 for the @
if (draft.value.mentions) {
// + 1 is needed as mentions always need a space seperator at the end
// + 1 is needed as mentions always need a space separator at the end
length += draft.value.mentions.map((mention) => {
const [handle] = mention.split('@')
return `@${handle}`