Skip to content

Commit

Permalink
compile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kurund committed Dec 1, 2020
1 parent d2d648e commit c726b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Chat/ChatMessages/ChatInput/ChatInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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;
Expand Down

0 comments on commit c726b09

Please sign in to comment.