diff --git a/frontend/src/pages/SessionHistoryPage.tsx b/frontend/src/pages/SessionHistoryPage.tsx index cb6338bd..46708547 100644 --- a/frontend/src/pages/SessionHistoryPage.tsx +++ b/frontend/src/pages/SessionHistoryPage.tsx @@ -1,7 +1,6 @@ import { useEffect, useState, useRef, useCallback } from 'react' import { useNavigate, useSearchParams } from 'react-router-dom' import { PageMeta } from '@/components/common/PageMeta' -import { StaggerList } from '@/components/common/StaggerList' import { sessionsApi } from '@/api/sessions' import { treesApi } from '@/api/trees' import type { Session, TreeListItem, SessionOutcome } from '@/types' @@ -275,14 +274,18 @@ export function SessionHistoryPage() { /> ) : ( <> - - {sessions.map((session) => ( +
+ {sessions.map((session, i) => (
+
@@ -443,8 +446,9 @@ export function SessionHistoryPage() {
+
))} - +
{hasMore ? (

Showing the 50 most recent sessions