diff --git a/app/features/trophies/TrophyRepository.server.test.ts b/app/features/trophies/TrophyRepository.server.test.ts index 87d0dde77..18ea9cdba 100644 --- a/app/features/trophies/TrophyRepository.server.test.ts +++ b/app/features/trophies/TrophyRepository.server.test.ts @@ -64,7 +64,9 @@ describe("trophy approvals", () => { creatorId: artist.id, }); - let accepted = null; + let accepted: null | { + id: number; + } = null; for (const userId of reviewerIds.slice(0, TROPHY_APPROVALS_REQUIRED)) { accepted = await TrophyRepository.addApproval({ pendingTrophyId: pending.id,