summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-29 16:01:51 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-29 16:01:51 +0900
commite5e439049490e69925eef55a354276e75affcc0c (patch)
tree31fe6ca5723e266162d745f8f10a599c843c63b4 /packages
parentlint (diff)
downloadsharkey-e5e439049490e69925eef55a354276e75affcc0c.tar.gz
sharkey-e5e439049490e69925eef55a354276e75affcc0c.tar.bz2
sharkey-e5e439049490e69925eef55a354276e75affcc0c.zip
fix(frontend): suppress inject warn
Diffstat (limited to 'packages')
-rw-r--r--packages/frontend/src/components/global/MkEmoji.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/global/MkEmoji.vue b/packages/frontend/src/components/global/MkEmoji.vue
index 198c0d8ace..fa55fd888b 100644
--- a/packages/frontend/src/components/global/MkEmoji.vue
+++ b/packages/frontend/src/components/global/MkEmoji.vue
@@ -25,7 +25,7 @@ const props = defineProps<{
menuReaction?: boolean;
}>();
-const react = inject(DI.mfmEmojiReactCallback);
+const react = inject(DI.mfmEmojiReactCallback, null);
const char2path = prefer.s.emojiStyle === 'twemoji' ? char2twemojiFilePath : char2fluentEmojiFilePath;