Skip to content

Commit b2a5207

Browse files
committed
Lint fixes
1 parent 71baecc commit b2a5207

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/datastore/src/letter-repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class LetterRepository {
223223
":updatedAt": new Date().toISOString(),
224224
":supplierStatus": `${letterToUpdate.supplierId}#${letterToUpdate.status}`,
225225
":ttl": Math.floor(
226-
Date.now() / 1000 + 60 * 60 * this.config.lettersTtlHours
226+
Date.now() / 1000 + 60 * 60 * this.config.lettersTtlHours,
227227
),
228228
":eventId": letterToUpdate.eventId,
229229
};

internal/datastore/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { string, z } from "zod";
1+
import { z } from "zod";
22
import { idRef } from "@internal/helpers";
33

44
export const SupplierStatus = z.enum(["ENABLED", "DISABLED"]);

0 commit comments

Comments
 (0)