Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Wilms committed Sep 14, 2024
1 parent 8f3fd71 commit d845030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/match/matching.perf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ async function computeOldMatchings(
});

const matching: Matching = result.matches.map((it) => ({
request: requests[+it.helpee.uuid],
offer: offers[+it.helper.uuid],
request: requests[+it.helpee.id],

Check failure on line 77 in common/match/matching.perf.ts

View workflow job for this annotation

GitHub Actions / integration (18.x)

Property 'id' does not exist on type 'PersonID'.
offer: offers[+it.helper.id],

Check failure on line 78 in common/match/matching.perf.ts

View workflow job for this annotation

GitHub Actions / integration (18.x)

Property 'id' does not exist on type 'PersonID'.
}));

return matching;
Expand Down

0 comments on commit d845030

Please sign in to comment.