diff --git a/app/routes/time-entries.tsx b/app/routes/time-entries.tsx index a66ea54..84691a6 100644 --- a/app/routes/time-entries.tsx +++ b/app/routes/time-entries.tsx @@ -59,7 +59,7 @@ export async function loader({ request }: LoaderArgs) { const size = url.searchParams.get('size') ? parseInt(url.searchParams.get('size')!, 10) : 25; - const orderBy = url.searchParams.get('orderBy') || 'createdAt'; + const orderBy = url.searchParams.get('orderBy') || 'startTime'; const order = url.searchParams.get('order') || 'desc'; return json({