Skip to content

Commit b6bfc0b

Browse files
authored
fix missing application metadata error (#3657)
* fix missing application metadata error * formary
1 parent f4c4050 commit b6bfc0b

File tree

1 file changed

+5
-1
lines changed
  • packages/round-manager/src/features/api

1 file changed

+5
-1
lines changed

packages/round-manager/src/features/api/utils.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,10 @@ export const convertApplications = (
255255
return [];
256256
}
257257

258+
if (application.metadata === null) {
259+
return [];
260+
}
261+
258262
return [
259263
{
260264
id: application.id,
@@ -290,4 +294,4 @@ export const convertApplications = (
290294
);
291295

292296
return applications;
293-
};
297+
};

0 commit comments

Comments
 (0)