From de4f285650c8126732d829c8979b41817eacaea4 Mon Sep 17 00:00:00 2001 From: Ashish Dabral Date: Tue, 9 Sep 2025 13:23:23 +0530 Subject: [PATCH] fixed scrolling issue #214 --- frontend/components/ui/ui-structure.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/components/ui/ui-structure.tsx b/frontend/components/ui/ui-structure.tsx index 9df3ee87..2355249a 100644 --- a/frontend/components/ui/ui-structure.tsx +++ b/frontend/components/ui/ui-structure.tsx @@ -102,10 +102,10 @@ export function UIStructure() { }; return ( - - - - + + + +
@@ -136,14 +136,14 @@ export function UIStructure() { />
- - + + {loading ? // Skeleton loader while loading saved chats Array.from({ length: 4 }).map((_, i) => (
)) : uiExecutions.map((execution: Execution) => ( @@ -155,18 +155,18 @@ export function UIStructure() { onClick={() => router.push(`/ask/${execution.id}`)} >
- + {execution.title}
@@ -208,7 +208,7 @@ export function UIStructure() { - + {!isUserLoading && !user && (