diff --git a/web/src/components/ui/layouts/AppPageLayout.stories.tsx b/web/src/components/ui/layouts/AppPageLayout.stories.tsx
index 26fe58e6e..315023ee0 100644
--- a/web/src/components/ui/layouts/AppPageLayout.stories.tsx
+++ b/web/src/components/ui/layouts/AppPageLayout.stories.tsx
@@ -52,15 +52,16 @@ export const WithCustomClassName: Story = {
export const LongContent: Story = {
args: {
header:
Header Content
,
+ scrollable: true,
children: (
-
- {Array.from({ length: 20 }, (_, i) => (
+ <>
+ {Array.from({ length: 100 }, (_, i) => (
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua.
))}
-
+ >
)
}
};
diff --git a/web/src/layouts/ChatLayout/ChatContainer/ChatHeader/ChatHeader.tsx b/web/src/layouts/ChatLayout/ChatContainer/ChatHeader/ChatHeader.tsx
index 939cd267f..ca992981e 100644
--- a/web/src/layouts/ChatLayout/ChatContainer/ChatHeader/ChatHeader.tsx
+++ b/web/src/layouts/ChatLayout/ChatContainer/ChatHeader/ChatHeader.tsx
@@ -14,7 +14,7 @@ export const ChatHeader: React.FC<{
return (
{hasFile && chatTitle && (