diff --git a/www/app/settings/SettingsLayout.tsx b/www/app/settings/SettingsLayout.tsx index 3b796cc..350e2c2 100644 --- a/www/app/settings/SettingsLayout.tsx +++ b/www/app/settings/SettingsLayout.tsx @@ -10,8 +10,8 @@ import { User } from '@supabase/supabase-js'; interface SettingsProps { user: User | null; - subscription?: any | null; // Change this to the correct type when available - products?: any[] | null; // Change this to the correct type when available + subscription?: unknown | null; // Change this to the correct type when available + products?: unknown[] | null; // Change this to the correct type when available } export default function SettingsLayout({ @@ -33,16 +33,17 @@ export default function SettingsLayout({
-
+ ) : ( + )} - ); diff --git a/www/components/sidebar.tsx b/www/components/sidebar.tsx index 1062fda..635230e 100644 --- a/www/components/sidebar.tsx +++ b/www/components/sidebar.tsx @@ -114,7 +114,7 @@ export default function Sidebar({ return (
@@ -124,7 +124,7 @@ export default function Sidebar({ } top-0 left-0`} > {/* Section 1: Top buttons */} -
+