Skip to content

Commit 74b0cd5

Browse files
authored
Merge pull request #589 from formio/fix/FIO-9413_library_license_check_error
FIO-9413: Fix library license check
2 parents 1ceda0d + 232aa98 commit 74b0cd5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/components/Report.jsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ export const Report = (props) => {
7272
formio.form = { components: [], report };
7373
return formio;
7474
}
75+
}).catch((err) => {
76+
console.error(err);
77+
if (formio?.form?.report ) {
78+
formio.form.report = {};
79+
}
7580
});
7681
initializeFormio();
7782
}

0 commit comments

Comments
 (0)