From 5a1ce2f9fde19b0c74b5f3f512f0bd150f09e524 Mon Sep 17 00:00:00 2001 From: Igor Loskutov Date: Fri, 12 Sep 2025 18:39:15 -0400 Subject: [PATCH] self-pr review --- www/app/[roomName]/MeetingSelection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/app/[roomName]/MeetingSelection.tsx b/www/app/[roomName]/MeetingSelection.tsx index 6b64b9e8..642fc9ad 100644 --- a/www/app/[roomName]/MeetingSelection.tsx +++ b/www/app/[roomName]/MeetingSelection.tsx @@ -56,9 +56,9 @@ export default function MeetingSelection({ const allMeetings = activeMeetingsQuery.data || []; const now = new Date(); - const [currentMeetings, upcomingMeetings] = R.pipe( + const [currentMeetings, upcomingMeetings] = R.partition( allMeetings, - R.partition((meeting) => { + (meeting) => { const startTime = new Date(meeting.start_date); // Meeting is ongoing if it started and participants have joined or it's been running for a while return ( @@ -66,7 +66,7 @@ export default function MeetingSelection({ now.getTime() - startTime.getTime() > MEETING_DEFAULT_TIME_MINUTES * 1000 ); - }), + }, ); const loading = roomQuery.isLoading || activeMeetingsQuery.isLoading;