@xyo-network/os-react-runtime 4.2.0-rc.6 → 4.2.0-rc.7
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/browser/index.mjs +4 -4
- package/dist/browser/index.mjs.map +1 -1
- package/dist/browser/modules/Dapp/modules/Window/DappWindow.d.ts +3 -3
- package/dist/browser/modules/Dapp/modules/Window/DappWindow.d.ts.map +1 -1
- package/package.json +9 -9
- package/src/modules/Dapp/modules/Window/DappWindow.tsx +7 -8
package/dist/browser/index.mjs
CHANGED
|
@@ -3151,7 +3151,7 @@ var DappWindow = /* @__PURE__ */ __name(({ context, dappSet, dappState, dappWall
|
|
|
3151
3151
|
})),
|
|
3152
3152
|
height: "100dvh",
|
|
3153
3153
|
width: "100dvw",
|
|
3154
|
-
largeScreenMenu: /* @__PURE__ */ React25.createElement(DappMenuDrawer, {
|
|
3154
|
+
largeScreenMenu: active && /* @__PURE__ */ React25.createElement(DappMenuDrawer, {
|
|
3155
3155
|
context,
|
|
3156
3156
|
name,
|
|
3157
3157
|
version,
|
|
@@ -3160,7 +3160,7 @@ var DappWindow = /* @__PURE__ */ __name(({ context, dappSet, dappState, dappWall
|
|
|
3160
3160
|
menuConfig,
|
|
3161
3161
|
menuItems: menuItemsVisible
|
|
3162
3162
|
}),
|
|
3163
|
-
smallScreenMenu: /* @__PURE__ */ React25.createElement(DappBottomNavigation, {
|
|
3163
|
+
smallScreenMenu: active && /* @__PURE__ */ React25.createElement(DappBottomNavigation, {
|
|
3164
3164
|
activePath,
|
|
3165
3165
|
onPathChange,
|
|
3166
3166
|
menuConfig,
|
|
@@ -3177,8 +3177,8 @@ var DappWindow = /* @__PURE__ */ __name(({ context, dappSet, dappState, dappWall
|
|
|
3177
3177
|
})
|
|
3178
3178
|
}, hasErrors ? /* @__PURE__ */ React25.createElement(FlexCol10, {
|
|
3179
3179
|
padding: 2
|
|
3180
|
-
}, resolvedErrors?.map((error
|
|
3181
|
-
key:
|
|
3180
|
+
}, resolvedErrors?.map((error) => /* @__PURE__ */ React25.createElement(ErrorRender3, {
|
|
3181
|
+
key: error?.message,
|
|
3182
3182
|
error,
|
|
3183
3183
|
scope: "DappWindow"
|
|
3184
3184
|
}))) : null, /* @__PURE__ */ React25.createElement(WalletProvider, {
|