Skip to content

Commit

Permalink
fix CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-sven committed Jan 29, 2025
1 parent c4b35b8 commit 601d6c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function FarmList() {
releasePerSecond: view.release_per_second as number,
x,
y,
reward: types[2].replace('>', '').trim(),
reward: types[2].replaceAll('>', '').trim(),
liquidity: lpTokens.find((item) => item.x.type === x.type && item.y.type === y.type),
};
});
Expand Down

0 comments on commit 601d6c3

Please sign in to comment.