diff --git a/components/MentionList/index.tsx b/components/MentionList/index.tsx index 499fb89a..e90d6336 100644 --- a/components/MentionList/index.tsx +++ b/components/MentionList/index.tsx @@ -11,7 +11,7 @@ import classNames from 'classnames' import styles from './index.module.scss' -type Props = Pick +type Props = Pick export type MentionRef = { onKeyDown: (props: { event: KeyboardEvent }) => boolean @@ -113,7 +113,9 @@ export const MentionList = forwardRef( )) ) : (
- {t('search.errors.no_results_generic')} + {props.query.length < 3 + ? t('search.errors.type') + : t('search.errors.no_results_generic')}
)}