From 4d42c6787022d70973f4e1a460781f33a7d3cf00 Mon Sep 17 00:00:00 2001 From: Mirza Hanan Date: Fri, 16 Aug 2024 23:50:13 +0500 Subject: [PATCH] fix(ai-answer): ai answer overflowing sidebar --- src/components/App/SideBar/AiSummary/AiAnswer/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/App/SideBar/AiSummary/AiAnswer/index.tsx b/src/components/App/SideBar/AiSummary/AiAnswer/index.tsx index 39f52be5b..bebefd227 100644 --- a/src/components/App/SideBar/AiSummary/AiAnswer/index.tsx +++ b/src/components/App/SideBar/AiSummary/AiAnswer/index.tsx @@ -19,6 +19,9 @@ const Wrapper = styled(Flex).attrs({ })` padding: 0 1.5rem 1.5rem; gap: 1rem; + overflow-wrap: break-word; + white-space: normal; + word-break: break-word; ` const SummaryText = styled(Text)`