self-pr review treeshake

This commit is contained in:
Igor Loskutov
2025-09-12 18:41:27 -04:00
parent 5a1ce2f9fd
commit b438a2646e

View File

@@ -1,6 +1,6 @@
"use client";
import * as R from "remeda";
import { partition } from "remeda";
import {
Box,
VStack,
@@ -56,7 +56,7 @@ export default function MeetingSelection({
const allMeetings = activeMeetingsQuery.data || [];
const now = new Date();
const [currentMeetings, upcomingMeetings] = R.partition(
const [currentMeetings, upcomingMeetings] = partition(
allMeetings,
(meeting) => {
const startTime = new Date(meeting.start_date);