From 87582604f725ed233cc4609f34bec13028ebcd2e Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Tue, 4 Jun 2024 11:22:40 +0530 Subject: [PATCH] style: fix overlapping of response container in AI popover. (#4684) --- web/components/core/modals/gpt-assistant-popover.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/components/core/modals/gpt-assistant-popover.tsx b/web/components/core/modals/gpt-assistant-popover.tsx index 5fd992a28..099b90254 100644 --- a/web/components/core/modals/gpt-assistant-popover.tsx +++ b/web/components/core/modals/gpt-assistant-popover.tsx @@ -210,11 +210,7 @@ export const GptAssistantPopover: React.FC = (props) => { {response !== "" && (
Response: - ${response}

`} - containerClassName={response ? "-mx-3 -my-3" : ""} - ref={responseRef} - /> + ${response}

`} ref={responseRef} />
)} {invalidResponse && (