From 3bb236d617f179baa0b7198e0aab75ea78858656 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 15 Jun 2025 19:33:52 +0000 Subject: [PATCH] Fix: Ensure settings page layout The settings page was still appearing as an isolated page. This commit ensures the settings page integrates with the main app layout, using the same sidebar as other pages. --- src/pages/Configuracoes.tsx | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/src/pages/Configuracoes.tsx b/src/pages/Configuracoes.tsx index a954bd0..4b3a418 100644 --- a/src/pages/Configuracoes.tsx +++ b/src/pages/Configuracoes.tsx @@ -4,23 +4,16 @@ import MeuCadastroForm from "@/components/settings/MeuCadastroForm"; import { useState } from "react"; const Configuracoes = () => { - // Por padrão "visao-geral" const [tab, setTab] = useState("visao-geral"); return ( <> -