Skip to content

Commit 093352a

Browse files
Update page.tsx
1 parent e9230c1 commit 093352a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

app/dashboard/page.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ function DashboardContent({ authUser }: any) {
1111
return (
1212
<main className="container mx-auto p-4 space-y-6">
1313
<h1 className="text-3xl font-bold">Welcome, {authUser?.fullName}</h1>
14-
1514
<Card>
1615
<CardHeader>
1716
<CardTitle>Your Profile</CardTitle>
@@ -47,7 +46,6 @@ export default function Dashboard() {
4746
useEffect(() => {
4847
fetchAuthUser();
4948
}, [fetchAuthUser]);
50-
5149
return (
5250
<div className="min-h-screen w-full">
5351
<DashboardNavbar isLoading={authUserLoading} userId={authUser?.id} />

0 commit comments

Comments
 (0)