Merge Tag 'v0.2.31'

This commit is contained in:
2026-03-09 12:32:35 +01:00
22 changed files with 627 additions and 135 deletions

View File

@@ -1,7 +1,11 @@
import { notFound } from 'next/navigation';
import { ReactNode } from "react";
export default function Debug({children}: {children: ReactNode}) {
if (process.env.NODE_ENV !== 'development') return <></>
if (process.env.NODE_ENV !== 'development') {
notFound()
}
return (
<div className="debug">
{children}