do to formatters

This commit is contained in:
2026-01-24 01:07:43 +01:00
parent ae59df61eb
commit 891b3cf0ee
140 changed files with 656 additions and 1159 deletions

View File

@@ -1,23 +1,22 @@
'use client';
import { useState } from 'react';
import {
navigateToEditRaceAction,
navigateToRaceResultsAction,
navigateToRescheduleRaceAction,
registerForRaceAction,
withdrawFromRaceAction
} from '@/app/actions/leagueScheduleActions';
import { EnhancedLeagueSchedulePanel } from '@/components/leagues/EnhancedLeagueSchedulePanel';
import { RaceDetailModal } from '@/components/leagues/RaceDetailModal';
import type { LeagueScheduleViewData } from '@/lib/view-data/leagues/LeagueScheduleViewData';
import { LeagueScheduleViewData } from '@/lib/view-data/leagues/LeagueScheduleViewData';
import { Box } from '@/ui/Box';
import { Text } from '@/ui/Text';
import { Button } from '@/ui/Button';
import { Icon } from '@/ui/Icon';
import { Group } from '@/ui/Group';
import { Calendar, Plus } from 'lucide-react';
import { DateDisplay } from '@/lib/display-objects/DateDisplay';
import {
registerForRaceAction,
withdrawFromRaceAction,
navigateToEditRaceAction,
navigateToRescheduleRaceAction,
navigateToRaceResultsAction
} from '@/app/actions/leagueScheduleActions';
import { Icon } from '@/ui/Icon';
import { Text } from '@/ui/Text';
import { Plus } from 'lucide-react';
import { useState } from 'react';
interface LeagueScheduleTemplateProps {
viewData: LeagueScheduleViewData;