summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-04-01 21:39:57 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-04-01 21:39:57 -0400
commitfa12f4c9b0676b7b40ed46549ba1cf638d840626 (patch)
tree09e2c1c47f5f85797ba659fdfca78649277e59f9 /packages
parentreplace new icons (diff)
downloadsharkey-fa12f4c9b0676b7b40ed46549ba1cf638d840626.tar.gz
sharkey-fa12f4c9b0676b7b40ed46549ba1cf638d840626.tar.bz2
sharkey-fa12f4c9b0676b7b40ed46549ba1cf638d840626.zip
fix type error in check-word-mute.ts
Diffstat (limited to 'packages')
-rw-r--r--packages/frontend/src/utility/check-word-mute.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/utility/check-word-mute.ts b/packages/frontend/src/utility/check-word-mute.ts
index 194ef0f420..37ad678555 100644
--- a/packages/frontend/src/utility/check-word-mute.ts
+++ b/packages/frontend/src/utility/check-word-mute.ts
@@ -42,7 +42,7 @@ export function checkWordMute(note: Misskey.entities.Note, me: Misskey.entities.
return false;
}
-function getNoteText(note: Note): string {
+function getNoteText(note: Misskey.entities.Note): string {
const textParts: string[] = [];
if (note.cw) textParts.push(note.cw);