@hestia-earth/ui-components 0.41.11 → 0.41.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7585,7 +7585,7 @@ const dataWithConfigModelLogs = (logs, termId) => (data) => {
7585
7585
  const termsLog = termId in log && data.key === 'input'
7586
7586
  ? log[termId].models.reduce((p, c) => {
7587
7587
  // extend requirements if none found
7588
- p[c].requirements = p[c].requirements || log[c].requirements;
7588
+ p[c].requirements = p[c].requirements || log[c]?.requirements;
7589
7589
  return p;
7590
7590
  }, log[termId])
7591
7591
  : log;