We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9230c1 commit 093352aCopy full SHA for 093352a
app/dashboard/page.tsx
@@ -11,7 +11,6 @@ function DashboardContent({ authUser }: any) {
11
return (
12
<main className="container mx-auto p-4 space-y-6">
13
<h1 className="text-3xl font-bold">Welcome, {authUser?.fullName}</h1>
14
-
15
<Card>
16
<CardHeader>
17
<CardTitle>Your Profile</CardTitle>
@@ -47,7 +46,6 @@ export default function Dashboard() {
47
46
useEffect(() => {
48
fetchAuthUser();
49
}, [fetchAuthUser]);
50
51
52
<div className="min-h-screen w-full">
53
<DashboardNavbar isLoading={authUserLoading} userId={authUser?.id} />
0 commit comments