Skip to content

Commit

Permalink
fix unexisting var
Browse files Browse the repository at this point in the history
  • Loading branch information
0xngmi committed Jul 6, 2024
1 parent 3a6ae5f commit e9f57a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/myso-v2/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const getCoveredCallOfTheWeekBalances = async (api, contracts) => {
(contract) => contract.type === "p2p"
);

if (!coveredCallOfTheWeeks) return balances;
if (!coveredCallOfTheWeeks) return;

const coveredCallOfTheWeekStrategies = await api.multiCall({
calls: coveredCallOfTheWeeks.map((contract) => ({
Expand Down

0 comments on commit e9f57a3

Please sign in to comment.