From d209b7401c02eca6fae5d95fe61efbaad24e0ced Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Tue, 20 Jan 2026 15:22:23 +0000 Subject: [PATCH] =?UTF-8?q?style:=20corrige=20formata=C3=A7=C3=A3o=20de=20?= =?UTF-8?q?indenta=C3=A7=C3=A3o=20no=20layout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(dashboard)/layout.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/(dashboard)/layout.tsx b/app/(dashboard)/layout.tsx index b5c9189..77af2e2 100644 --- a/app/(dashboard)/layout.tsx +++ b/app/(dashboard)/layout.tsx @@ -20,7 +20,7 @@ export default async function DashboardLayout({ // Encontrar o pagador admin do usuário const adminPagador = pagadoresList.find( - (p) => p.role === PAGADOR_ROLE_ADMIN && p.userId === session.user.id + (p) => p.role === PAGADOR_ROLE_ADMIN && p.userId === session.user.id, ); // Buscar notificações para o período atual @@ -30,14 +30,14 @@ export default async function DashboardLayout({ typeof periodoParam === "string" ? periodoParam : Array.isArray(periodoParam) - ? periodoParam[0] - : null; + ? periodoParam[0] + : null; const { period: currentPeriod } = parsePeriodParam( - singlePeriodoParam ?? null + singlePeriodoParam ?? null, ); const notificationsSnapshot = await fetchDashboardNotifications( session.user.id, - currentPeriod + currentPeriod, ); return (