Skip to content

Commit

Permalink
dg: fix ICR projectID formatting (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
psparacino authored Feb 21, 2024
1 parent 9bac0a5 commit 4a53d82
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export function handleNewICC(event: ProjectCreated): void {
for (let i = 0; i < ICR_PROJECT_INFO.length; i++) {
if (event.params.projectAddress.toHexString().toLowerCase() == ICR_PROJECT_INFO[i][0]) {
project.id = ICR_PROJECT_INFO[i][1]
project.projectID = ICR_PROJECT_INFO[i][1]
project.name = ICR_PROJECT_INFO[i][2]
project.methodologies = ICR_PROJECT_INFO[i][3]
project.category = ICR_PROJECT_INFO[i][4]
Expand Down

0 comments on commit 4a53d82

Please sign in to comment.