monkey-front-components 0.0.749 → 0.0.750

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.
@@ -145,7 +145,7 @@ class BaseComponent {
145
145
  const error = document.getElementsByTagName('error');
146
146
  let letHEele = null;
147
147
  for (let i = 0; i <= error.length; i += 1) {
148
- if (`${error[i].textContent}`.trim()) {
148
+ if (`${error[i]?.textContent}`.trim()) {
149
149
  letHEele = error[i];
150
150
  break;
151
151
  }