From 9413c470a80a32eb7f63ba37410eca7aa525610b Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Thu, 16 Apr 2026 21:16:35 +0000 Subject: [PATCH] =?UTF-8?q?style(ui):=20restaurar=20indenta=C3=A7=C3=A3o?= =?UTF-8?q?=20tabs=20no=20dashboard=20layout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #42 trocou tabs por spaces no arquivo inteiro, quebrando o Biome. Revertido pelo lint:fix para manter consistĂȘncia com o resto do projeto. Co-Authored-By: Claude Opus 4.7 --- src/app/(dashboard)/layout.tsx | 66 +++++++++++++++++----------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/src/app/(dashboard)/layout.tsx b/src/app/(dashboard)/layout.tsx index e3a6cbe..bb13a18 100644 --- a/src/app/(dashboard)/layout.tsx +++ b/src/app/(dashboard)/layout.tsx @@ -6,40 +6,40 @@ import { DotPattern } from "@/shared/components/ui/dot-pattern"; import { getUserSession } from "@/shared/lib/auth/server"; export default async function DashboardLayout({ - children, + children, }: Readonly<{ - children: React.ReactNode; + children: React.ReactNode; }>) { - await connection(); - const session = await getUserSession(); - const navbarData = await fetchDashboardNavbarData(session.user.id); + await connection(); + const session = await getUserSession(); + const navbarData = await fetchDashboardNavbarData(session.user.id); - return ( - - -
-
- -
-
-
-
- {children} -
-
-
- - ); + return ( + + +
+
+ +
+
+
+
+ {children} +
+
+
+ + ); }