@blocklet/pages-kit 0.6.1 → 0.6.3

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.
@@ -391,7 +391,8 @@ function useTranspileComponent({ componentId, locale, properties, dev: { default
391
391
  .then((m) => {
392
392
  setComponent((prev) => ({ ...prev, EditComponent: m.default || m.EditComponent || undefined }));
393
393
  })
394
- .catch(() => {
394
+ .catch((e) => {
395
+ console.warn('transpile edit component error', e);
395
396
  // ignore error when transpile edit component
396
397
  });
397
398
  }