From bbdd98209af2b323572b74fe2141c2cddff3fd2c Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 11 Jul 2023 18:50:22 -0300 Subject: [PATCH] fix(chatInput): fix CSS class name in ChatInput component to use "bg-background" instead of "bg-input" when form-modal-lock-false condition is met --- src/frontend/src/modals/formModal/chatInput/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/modals/formModal/chatInput/index.tsx b/src/frontend/src/modals/formModal/chatInput/index.tsx index 2d1cdc112..ec62c0505 100644 --- a/src/frontend/src/modals/formModal/chatInput/index.tsx +++ b/src/frontend/src/modals/formModal/chatInput/index.tsx @@ -53,7 +53,7 @@ export default function ChatInput({ ? " form-modal-lock-true bg-input" : noInput ? "form-modal-no-input bg-input" - : " form-modal-lock-false bg-input", + : " form-modal-lock-false bg-background", "form-modal-lockchat" )}