diff --git a/src/app/(dashboard)/layout.tsx b/src/app/(dashboard)/layout.tsx index aa2fb63..b753d33 100644 --- a/src/app/(dashboard)/layout.tsx +++ b/src/app/(dashboard)/layout.tsx @@ -23,7 +23,7 @@ export default function DashboardLayout({ children }: DashboardLayoutProps) { -
{children}
+
{children}
); diff --git a/src/app/(dashboard)/page.tsx b/src/app/(dashboard)/page.tsx index 3a51953..96f4af0 100644 --- a/src/app/(dashboard)/page.tsx +++ b/src/app/(dashboard)/page.tsx @@ -8,13 +8,7 @@ export default async function DashboardPage() { if (!user) redirect("/sign-in"); return ( -
-
-

Home

-

- Monitor all of your projects and tasks here -

-
+
); diff --git a/src/features/workspaces/components/create-workspace-form.tsx b/src/features/workspaces/components/create-workspace-form.tsx index 5df1112..c08fc90 100644 --- a/src/features/workspaces/components/create-workspace-form.tsx +++ b/src/features/workspaces/components/create-workspace-form.tsx @@ -82,7 +82,6 @@ export const CreateWorkspaceForm = ({ onCancel }: CreateWorkspaceFormProps) => { - ); };