Skip to content

Commit

Permalink
fix missing application metadata error
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed Sep 27, 2024
1 parent f4c4050 commit 6be9b52
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/round-manager/src/features/api/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,10 @@ export const convertApplications = (
return [];
}

if (application.metadata === null) {
return [];
}

return [
{
id: application.id,
Expand Down Expand Up @@ -290,4 +294,4 @@ export const convertApplications = (
);

return applications;
};
};

0 comments on commit 6be9b52

Please sign in to comment.