Skip to content

Commit 478ec0c

Browse files
Merge pull request #3636 from gitcoinco/PAR-365
fix missing profile
2 parents 9eb9b58 + 02d14d9 commit 478ec0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/builder/src/actions/projects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export const loadProjects =
187187

188188
if (projects && withMetaData) {
189189
projects.forEach((project) => {
190-
if (project.metadata.title) {
190+
if (project.metadata && project.metadata.title) {
191191
dispatch<any>(transformAndDispatchProject(project.id, project));
192192
}
193193
});

0 commit comments

Comments
 (0)