Skip to content

Commit

Permalink
fix: many fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
EtherealGlow committed Dec 29, 2023
1 parent 49f0d1d commit 56fb4de
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/helpers/excel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export function mergeRewards(map1: AssigneeRewardMap, map2: AssigneeRewardMap):
const result: AssigneeRewardMap = {};

// Merge map1 into the result
// eslint-disable-next-line no-prototype-builtins
for (const assignee in map1) {
if (map1.hasOwnProperty(assignee)) {
result[assignee] = {
Expand All @@ -55,7 +54,6 @@ export function mergeRewards(map1: AssigneeRewardMap, map2: AssigneeRewardMap):
}

// Merge map2 into the result
// eslint-disable-next-line no-prototype-builtins
for (const assignee in map2) {
if (map2.hasOwnProperty(assignee)) {
result[assignee] = {
Expand Down

0 comments on commit 56fb4de

Please sign in to comment.