Files
nuzlocke-tracker/.beans/nuzlocke-tracker-3mwb--fix-typescript-build-errors-in-runencounterstsx.md
Julian Tabel a12958ae32
All checks were successful
CI / backend-tests (push) Successful in 27s
CI / frontend-tests (push) Successful in 29s
update beans and postgres mount path
2026-03-21 12:51:35 +01:00

630 B

title, status, type, priority, created_at, updated_at
title status type priority created_at updated_at
Fix TypeScript build errors in RunEncounters.tsx completed bug normal 2026-03-21T11:24:09Z 2026-03-21T11:25:37Z

Two TS errors blocking production build:\n1. Line 693: (typeof bossResults)[number] fails because bossResults is BossResult[] | undefined\n2. Line 1601: Parameter 'tm' implicitly has 'any' type

Summary of Changes\n\nFixed two TypeScript errors in RunEncounters.tsx:\n1. Used explicit BossResult type instead of (typeof bossResults)[number]\n2. Added BossResultTeamMember type annotation to tm parameter\n\nPR: #71