Skip to content

Commit

Permalink
fix: 🐛 remove json stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
chef-ryan committed Feb 12, 2025
1 parent 4da9639 commit 8a84750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gauges/src/getAllGauges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ const fetchGaugesSC = cacheByLRU(_fetchGaugesSC, {
ttl: 10000,
key: (params) => {
const [, killed, blockNumber] = params
return JSON.stringify([killed, blockNumber])
return [killed, blockNumber]
},
})

0 comments on commit 8a84750

Please sign in to comment.