From c726b094e48d8638c2a386a289f3ad6720091956 Mon Sep 17 00:00:00 2001 From: Kurund Jalmi Date: Tue, 1 Dec 2020 10:04:07 +0530 Subject: [PATCH] compile fixes --- src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx b/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx index 49890d605..06007f470 100644 --- a/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx +++ b/src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx @@ -5,6 +5,7 @@ import 'emoji-mart/css/emoji-mart.css'; import clsx from 'clsx'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; import { useApolloClient, useMutation } from '@apollo/client'; + import { ReactComponent as AttachmentIcon } from '../../../../assets/images/icons/Attachment/Unselected.svg'; import { ReactComponent as AttachmentIconSelected } from '../../../../assets/images/icons/Attachment/Selected.svg'; import styles from './ChatInput.module.css'; @@ -18,7 +19,6 @@ import { AddAttachment } from '../AddAttachment/AddAttachment'; import { CREATE_MEDIA_MESSAGE } from '../../../../graphql/mutations/Chat'; import { is24HourWindowOver } from '../../../../common/constants'; - export interface ChatInputProps { onSendMessage(content: string, mediaId: string | null, messageType: string): any; handleHeightChange(newHeight: number): void;