Skip to content

Commit e56a7e2

Browse files
committed
feat: better UI/layout on mobile
1 parent a7f69c0 commit e56a7e2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

apps/dashboard/app/(main)/billing/components/overview-tab.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ import { Button } from "@/components/ui/button";
2323
import { Skeleton } from "@/components/ui/skeleton";
2424
import { usePersistentState } from "@/hooks/use-persistent-state";
2525
import { cn } from "@/lib/utils";
26+
import { useBilling, useBillingData } from "../hooks/use-billing";
2627
import {
2728
type FeatureUsage,
28-
useBilling,
29-
useBillingData,
30-
} from "../hooks/use-billing";
31-
import { formatCompactNumber, getResetText } from "../utils/feature-usage";
29+
formatCompactNumber,
30+
getResetText,
31+
} from "../utils/feature-usage";
3232
import { CancelSubscriptionDialog } from "./cancel-subscription-dialog";
3333

3434
type OverviewTabProps = {

apps/dashboard/app/(main)/billing/hooks/use-billing.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
type FeatureUsage,
1010
} from "../utils/feature-usage";
1111

12-
export type { FeatureUsage };
1312

1413
export type Usage = {
1514
features: FeatureUsage[];

0 commit comments

Comments
 (0)