fix build error

This commit is contained in:
Móricz Gergő 2025-01-23 12:07:37 +01:00
parent 6557365149
commit 561f0186ef

View File

@ -4,10 +4,10 @@ export async function mixSchemaObjects(
finalSchema: any,
singleAnswerResult: any,
multiEntityResult: any,
logger: Logger
logger?: Logger
) {
const finalResult: any = {};
logger.debug("Mixing schema objects.");
logger?.debug("Mixing schema objects.");
// Recursive helper function to merge results based on schema
function mergeResults(schema: any, singleResult: any, multiResult: any) {