fix #33 - issues with same event names

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-06-23 22:59:04 +02:00
parent a43b3be588
commit f939ac09b6
7 changed files with 30 additions and 21 deletions

View File

@@ -31,6 +31,7 @@ export const reportRouter = createTRPCRouter({
lineType: report.lineType,
range: report.range === 'custom' ? '30d' : report.range,
formula: report.formula,
previous: report.previous ?? false,
},
});
}),
@@ -55,6 +56,7 @@ export const reportRouter = createTRPCRouter({
lineType: report.lineType,
range: report.range === 'custom' ? '30d' : report.range,
formula: report.formula,
previous: report.previous ?? false,
},
});
}),