diff --git a/components/common/MentionTypeahead/index.tsx b/components/common/MentionTypeahead/index.tsx
index f0c85faa..ba948814 100644
--- a/components/common/MentionTypeahead/index.tsx
+++ b/components/common/MentionTypeahead/index.tsx
@@ -1,5 +1,7 @@
import { useState } from 'react'
import { getCookie } from 'cookies-next'
+import { useTranslation } from 'next-i18next'
+
import type {
Option,
RenderTokenProps,
@@ -47,6 +49,7 @@ const MentionTypeahead = ({
exclusions,
...props
}: Props) => {
+ const { t } = useTranslation('common')
const locale = getCookie('NEXT_LOCALE')
? (getCookie('NEXT_LOCALE') as string)
: 'en'
@@ -100,7 +103,11 @@ const MentionTypeahead = ({
function renderMenu(results: Option[], menuProps: RenderMenuProps) {
return (
-