From 9011abfca78bc53be3ebd4e7a7488774ee097057 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Thu, 28 Mar 2024 23:12:57 +0800 Subject: [PATCH] Remove unused database import from billing page The database import from '@kit/supabase/database' was removed because it was not used within the billing page. Therefore, it is unnecessary to include it in the page.tsx. This makes the code cleaner and slightly more efficient. --- apps/web/app/(dashboard)/home/[account]/billing/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/app/(dashboard)/home/[account]/billing/page.tsx b/apps/web/app/(dashboard)/home/[account]/billing/page.tsx index cceabdb8c..c529cd6a8 100644 --- a/apps/web/app/(dashboard)/home/[account]/billing/page.tsx +++ b/apps/web/app/(dashboard)/home/[account]/billing/page.tsx @@ -2,7 +2,6 @@ import { BillingPortalCard, CurrentPlanCard, } from '@kit/billing-gateway/components'; -import { Database } from '@kit/supabase/database'; import { getSupabaseServerComponentClient } from '@kit/supabase/server-component-client'; import { If } from '@kit/ui/if'; import { PageBody, PageHeader } from '@kit/ui/page';