fix ui collaboration layout

This commit is contained in:
2025-03-14 11:16:43 +08:00
parent 3eb9bbe9ca
commit cd294581f5
15 changed files with 179 additions and 62 deletions

View File

@@ -1,5 +1,4 @@
import { LayoutColab_Main } from "@/app_modules/colab";
import colab_CekNotifikasi from "@/app_modules/colab/fun/get/cek_notifikasi";
import React from "react";
export default async function Layout({
@@ -7,11 +6,10 @@ export default async function Layout({
}: {
children: React.ReactNode;
}) {
const cekNotif = await colab_CekNotifikasi();
return (
<>
<LayoutColab_Main cekNotif={cekNotif as any}>{children}</LayoutColab_Main>
<LayoutColab_Main >{children}</LayoutColab_Main>
</>
);
}