From 802e5ec31aac89162200b69a3748a6efca208563 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Mon, 22 May 2023 16:44:36 -0300 Subject: [PATCH] Format --- .../src/modals/chatModal/chatInput/index.tsx | 96 ++++++++++--------- 1 file changed, 49 insertions(+), 47 deletions(-) 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 ( - <> -