diff --git a/src/frontend/src/modals/chatModal/chatInput/index.tsx b/src/frontend/src/modals/chatModal/chatInput/index.tsx index 1bea659ca..2fb600068 100644 --- a/src/frontend/src/modals/chatModal/chatInput/index.tsx +++ b/src/frontend/src/modals/chatModal/chatInput/index.tsx @@ -3,53 +3,55 @@ import { classNames } from "../../../utils"; import { useRef } from "react"; export default function ChatInput({ - lockChat, - chatValue, - sendMessage, - setChatValue, + lockChat, + chatValue, + sendMessage, + setChatValue, }: { - lockChat: boolean; - chatValue: string; - sendMessage: Function; - setChatValue: Function; + lockChat: boolean; + chatValue: string; + sendMessage: Function; + setChatValue: Function; }) { - const inputRef = useRef(null); - return ( - <> -