diff --git a/apps/web/components/layout.tsx b/apps/web/components/layout.tsx index 86b4c3a5a..5121204ee 100644 --- a/apps/web/components/layout.tsx +++ b/apps/web/components/layout.tsx @@ -18,11 +18,11 @@ const userNavigation = [ { name: "Sign out", href: "#" }, ]; -function classNames(...classes) { +function classNames(...classes: any) { return classes.filter(Boolean).join(" "); } -export default function Layout({ children }) { +export default function Layout({ children }: any) { return ( <>