Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchernchong committed Sep 15, 2024
1 parent 4dfcf3a commit 067792a
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions app/cars/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import Link from "next/link";
import { ArrowUpRight } from "lucide-react";
import { DistributionPieChart } from "@/app/cars/DistributionPieChart";
import { Progress } from "@/app/components/Progress";
import { Leaderboard } from "@/components/Leaderboard";
import { MonthSelector } from "@/components/MonthSelector";
import { StatisticsCard } from "@/components/StatisticsCard";
Expand All @@ -23,25 +20,10 @@ import {
CardHeader,
CardTitle,
} from "@/components/ui/card";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import {
API_URL,
FUEL_TYPE,
HYBRID_REGEX,
SITE_TITLE,
SITE_URL,
} from "@/config";
import { API_URL, HYBRID_REGEX, SITE_TITLE, SITE_URL } from "@/config";
import { type Car, type LatestMonth, RevalidateTags } from "@/types";
import { fetchApi } from "@/utils/fetchApi";
import { formatDateToMonthYear } from "@/utils/formatDateToMonthYear";
import { formatPercent } from "@/utils/formatPercent";
import type { Metadata } from "next";
import type { Dataset, Report, WithContext } from "schema-dts";

Expand Down

0 comments on commit 067792a

Please sign in to comment.