chore: bring emoji input in scope

This commit is contained in:
Shivam Mishra
2024-10-05 20:28:27 +05:30
parent e17d0cee42
commit bea704b851
@@ -9,16 +9,14 @@ import FluentIcon from 'shared/components/FluentIcon/Index.vue';
import ResizableTextArea from 'shared/components/ResizableTextArea.vue';
import { useDarkMode } from 'widget/composables/useDarkMode';
const EmojiInput = defineAsyncComponent(
() => import('shared/components/emoji/EmojiInput.vue')
);
export default {
name: 'ChatInputWrap',
components: {
ChatAttachmentButton,
ChatSendButton,
EmojiInput,
EmojiInput: defineAsyncComponent(
() => import('shared/components/emoji/EmojiInput.vue')
),
FluentIcon,
ResizableTextArea,
},