fix/visual-adjustments #82

Merged
M-Gabrielly merged 39 commits from fix/visual-adjustments into develop 2025-12-04 04:12:14 +00:00
Showing only changes of commit 8df4239406 - Show all commits

View File

@ -1,11 +1,5 @@
import type { ReactNode } from "react";
import { ChatWidget } from "@/components/features/pacientes/chat-widget";
export default function PacientesLayout({ children }: { children: ReactNode }) {
return (
<>
{children}
<ChatWidget />
</>
);
return <>{children}</>;
}