Skip to content

Commit

Permalink
fix: pass ascending param (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
solaris007 authored Dec 10, 2023
1 parent 2d6d412 commit 930ae6b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ export const auditFunctions = (dynamoClient, config, log) => ({
auditType,
auditedAt,
),
getAuditsForSite: (siteId, auditType) => getAuditsForSite(
getAuditsForSite: (siteId, auditType, ascending) => getAuditsForSite(
dynamoClient,
config,
log,
siteId,
auditType,
ascending,
),
getLatestAudits: (auditType, ascending) => getLatestAudits(
dynamoClient,
Expand Down

0 comments on commit 930ae6b

Please sign in to comment.