From 6683de2ea4a91f0f01b81f37b87a400696c6c9ce Mon Sep 17 00:00:00 2001 From: hfcRed Date: Sat, 12 Sep 2026 18:29:03 -0400 Subject: [PATCH] Fix type --- app/features/trophies/TrophyRepository.server.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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,