Skip to content

Commit

Permalink
Update naming for components
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkellly committed May 29, 2024
1 parent fe88ceb commit 45fec00
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/routes/timer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import {
import { ScrollArea } from '@/components/ui/scroll-area';
import { cn } from '@/lib/utils';
import TimerBar from '@/timer/TimerBar';
import DrawScrambleCard from '@/timer/drawScrambleCard';
import LiveCubeCard from '@/timer/liveCubeCard';
import ResultsCard from '@/timer/resultsCard';
import ScrambleDisplay from '@/timer/scrambleDisplay';
import DrawScrambleCard from '@/timer/DrawScrambleCard';
import LiveCubeCard from '@/timer/LiveCubeCard';
import ResultsCard from '@/timer/ResultsCard';
import ScrambleDisplay from '@/timer/ScrambleDisplay';
import useCubeTimer, { HOLD_DOWN_TIME, TimerState } from '@/timer/useCubeTimer';

export const Route = createFileRoute('/timer')({
Expand Down
2 changes: 1 addition & 1 deletion src/routes/trainer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createFileRoute } from '@tanstack/react-router';
import { useStore } from '@tanstack/react-store';
import { ScrollArea } from '@/components/ui/scroll-area';
import LiveCubeCard from '@/timer/liveCubeCard';
import LiveCubeCard from '@/timer/LiveCubeCard';
import DrawSolutionCard from '@/trainer/DrawSolutionCard';
import SolutionDisplay from '@/trainer/SolutionDisplay';
import TrainerBar from '@/trainer/TrainerBar';
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/timer/resultsCard.tsx → src/timer/ResultsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from '@/components/ui/dialog';
import { analyseSolve } from '@/lib/analysis/dnfAnalyser';
import { Penalty, Solve, db } from '@/lib/db';
import { AlgTable } from './algTable';
import { AlgTable } from './AlgTable';

function convertTimeToText(time: number) {
if (time == -1) return 'DNF';
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 45fec00

Please sign in to comment.