fix nextjs node adapter import

This commit is contained in:
dswbx
2025-02-06 15:19:25 +01:00
parent 0a5cc2ad98
commit 78d4f928ba
6 changed files with 30 additions and 31 deletions

View File

@@ -58,7 +58,7 @@ export function unflatten(
for (const pointer in obj) {
const required = isRequired(pointer, schema);
let subschema = lib.getSchema({ pointer });
console.log("subschema", pointer, subschema, selections);
//console.log("subschema", pointer, subschema, selections);
if (!subschema) {
throw new Error(`"${pointer}" not found in schema`);
}