diff --git a/frontend/common/src/components/SessionList.tsx b/frontend/common/src/components/SessionList.tsx index d517a23..fd2eab6 100644 --- a/frontend/common/src/components/SessionList.tsx +++ b/frontend/common/src/components/SessionList.tsx @@ -46,17 +46,17 @@ export const SessionList: React.FC = ({ return ( -
+
{sessions.map((session) => { const buttonContent = ( <> -
-
-
{session.name}
-
+
+
+
{session.name}
+
{session.steps.length} steps • {formatDate(session.updated)}
-
+
{session.status}
@@ -68,7 +68,7 @@ export const SessionList: React.FC = ({ { key: session.id, onClick: () => onSelectSession?.(session.id), - className: `w-full flex items-start p-3 text-left rounded-md transition-colors hover:bg-accent/50 ${ + className: `w-full flex items-start px-2 py-2 text-left rounded-md transition-colors hover:bg-accent/50 ${ currentSessionId === session.id ? 'bg-accent' : '' }` },