BugFix: fixing types

This commit is contained in:
2025-01-13 16:32:38 +01:00
parent a65393dd11
commit 87d6928a97
2 changed files with 2 additions and 2 deletions

View File

@@ -110,7 +110,7 @@ export const fetchAllLocations = withUser(async (user:AuthenticatedUser, year:nu
// fetch all locations for the given year
const locations = await dbClient.collection<BillingLocation>("lokacije")
.aggregate([
.aggregate<BillingLocation>([
{
$match: {
userId,