diff --git a/app/components/usage-card.tsx b/app/components/usage-card.tsx index d2f06dd..2b6b658 100644 --- a/app/components/usage-card.tsx +++ b/app/components/usage-card.tsx @@ -8,14 +8,6 @@ interface UsageCardProps { icon: React.ReactNode } -export const UsageList = ({ children }: React.PropsWithChildren<{}>) => { - return ( -
- {children} -
- ) -} - export const UsageCard = ({ usageName, monthlyUsage, currentUsage, icon }: UsageCardProps) => { return (
diff --git a/app/routes/dashboard.tsx b/app/routes/dashboard.tsx index cf897d1..a5582ba 100644 --- a/app/routes/dashboard.tsx +++ b/app/routes/dashboard.tsx @@ -1,6 +1,6 @@ import { GeneralLayout } from "~/components/general-layout"; import { UpgradeAccountBanner } from "~/components/upgrade-account-banner"; -import { UsageCard, UsageList } from "~/components/usage-card"; +import { UsageCard } from "~/components/usage-card"; import { UsageChart } from "~/components/usage-chart"; export default function Dashboard() { @@ -14,7 +14,7 @@ export default function Dashboard() {

Dashboard

Current Usage

- +
} /> - +

Historical Usage