Error coding, rebuild server
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
import { funGetUserProfile } from "@/app_modules/fun_global/get_user_profile";
|
||||
import { EditProfileLayout } from "@/app_modules/katalog/profile";
|
||||
|
||||
export default async function Layout({ children, params }: { children: any, params: {id: string} }) {
|
||||
const data = await funGetUserProfile(params.id)
|
||||
const profileId = data?.Profile?.id
|
||||
export default async function Layout({
|
||||
children,
|
||||
params,
|
||||
}: {
|
||||
children: any;
|
||||
params: { id: string };
|
||||
}) {
|
||||
let profileId = params.id;
|
||||
|
||||
return (
|
||||
<>
|
||||
<EditProfileLayout profileId={profileId}>{children}</EditProfileLayout>
|
||||
<EditProfileLayout>{children}</EditProfileLayout>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user