@xyo-network/os-react-runtime 7.3.0 → 7.3.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.
@@ -3087,7 +3087,7 @@ var StyledSplashContainer = styled4(FlexCol8, {
3087
3087
 
3088
3088
  // src/modules/Dapp/modules/Window/Rendered.tsx
3089
3089
  var DappRendered = /* @__PURE__ */ __name(({ context, dapp, dappMenuProperties, dappState, dappWallet, errors }) => {
3090
- const { DappComponent, name, scrollable = true, version } = useDecomposeDapp(dapp);
3090
+ const { DappComponent: dappComponent, name, scrollable = true, version } = useDecomposeDapp(dapp);
3091
3091
  const { active, minimized } = dappState ?? {};
3092
3092
  const hasErrors = errors && errors.length > 0;
3093
3093
  return /* @__PURE__ */ React25.createElement(DappChrome, {
@@ -3141,7 +3141,7 @@ var DappRendered = /* @__PURE__ */ __name(({ context, dapp, dappMenuProperties,
3141
3141
  sx: {
3142
3142
  overflowY: scrollable ? "auto" : "hidden"
3143
3143
  }
3144
- }, /* @__PURE__ */ React25.createElement(DappComponent, {
3144
+ }, /* @__PURE__ */ React25.createElement(dappComponent, {
3145
3145
  name: dapp?.config.name
3146
3146
  })), /* @__PURE__ */ React25.createElement(DappAccessFlexbox, {
3147
3147
  context