@overmap-ai/blocks 1.0.31-fix-error-boundary.0 → 1.0.31-fix-error-boundary.1
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.
- package/dist/blocks.js +9 -1
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +9 -1
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/blocks.js
CHANGED
|
@@ -2766,7 +2766,15 @@ const OvermapErrorBoundary = memo((props) => {
|
|
|
2766
2766
|
return /* @__PURE__ */ jsx(
|
|
2767
2767
|
ErrorBoundary,
|
|
2768
2768
|
{
|
|
2769
|
-
fallback: /* @__PURE__ */ jsx(
|
|
2769
|
+
fallback: /* @__PURE__ */ jsx(
|
|
2770
|
+
ErrorFallback,
|
|
2771
|
+
{
|
|
2772
|
+
absoluteCentering,
|
|
2773
|
+
message,
|
|
2774
|
+
onRetry: handleRetry
|
|
2775
|
+
},
|
|
2776
|
+
attempt
|
|
2777
|
+
),
|
|
2770
2778
|
onError: logError,
|
|
2771
2779
|
children: props.children
|
|
2772
2780
|
},
|