feat: fixed ts error

This commit is contained in:
=
2025-07-02 23:03:34 +05:30
parent 3b839d4826
commit fbd9ecd980

View File

@@ -209,7 +209,7 @@ export const registerOrgRouter = async (server: FastifyZodProvider) => {
const auditLogs = await server.services.auditLog.listAuditLogs({
filter: {
...req.query,
endDate: req.query.endDatea || new Date().toISOString(),
endDate: req.query.endDate || new Date().toISOString(),
projectId: req.query.projectId,
startDate: req.query.startDate || getLastMidnightDateISO(),
auditLogActorId: req.query.actor,