Skip to content

Commit

Permalink
Fixed a bug in funding pot script
Browse files Browse the repository at this point in the history
  • Loading branch information
aminlatifi committed Jan 7, 2025
1 parent f212300 commit 05ff2eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/runFundingPotService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async function fillProjectsData() {
SAFE: project.abc.projectAddress || '',
ORCHESTRATOR: project.abc.orchestratorAddress || '',
NFT: project.abc.nftContractAddress || '',
MATCHING_FUNDS: project.matchingFunds || '',
MATCHING_FUNDS: project.matchingFunds?.toString() || '',
};
} else {
console.warn(
Expand Down

0 comments on commit 05ff2eb

Please sign in to comment.