self review

This commit is contained in:
Sara
2023-10-31 19:31:48 +01:00
committed by Mathieu Virbel
parent 6d5c042548
commit 7430996f7f
4 changed files with 1 additions and 8 deletions

View File

@@ -69,11 +69,8 @@ type LayoutProps = {
export default async function RootLayout({ children, params }: LayoutProps) {
const config = await get(params.domain);
// console.log(config);
const requireLogin = config ? config["features"]["requireLogin"] : false;
// console.log(requireLogin);
const privacy = config ? config["features"]["privacy"] : true;
const browse = config ? config["features"]["browse"] : true;
return (