@overmap-ai/blocks 1.0.17-add-error-boundary-component.2 → 1.0.17-add-error-boundary-component.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.
package/dist/blocks.js CHANGED
@@ -2266,7 +2266,7 @@ const ErrorFallback = memo(() => {
2266
2266
  const { resetBoundary } = useErrorBoundary();
2267
2267
  const height = "20px";
2268
2268
  const centerStyles = { placeSelf: "center" };
2269
- return /* @__PURE__ */ jsxs(Flex, { gap: "2", direction: "row", children: [
2269
+ return /* @__PURE__ */ jsxs(Flex, { gap: "2", direction: "row", width: "100%", children: [
2270
2270
  /* @__PURE__ */ jsx("div", { style: { flexGrow: 1 } }),
2271
2271
  /* @__PURE__ */ jsx(FeatherIcon, { icon: "alert-triangle", size: height, style: centerStyles }),
2272
2272
  /* @__PURE__ */ jsx(Text$1, { style: { lineHeight: height, ...centerStyles }, children: "Something went wrong" }),