@huma-finance/widgets 0.0.62-beta.688 → 0.0.62-beta.693

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.
@@ -3,7 +3,6 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var providers = require('@ethersproject/providers');
6
- var webShared = require('@huma-finance/web-shared');
7
6
  var material = require('@mui/material');
8
7
  var jotai = require('jotai');
9
8
  var React = require('react');
@@ -11,6 +10,7 @@ var reactRedux = require('react-redux');
11
10
  var shared = require('@huma-finance/shared');
12
11
  var core = require('@web3-react/core');
13
12
  var ErrorOutlineIcon = require('@mui/icons-material/ErrorOutline');
13
+ var webShared = require('@huma-finance/web-shared');
14
14
  var utils = require('jotai/utils');
15
15
  var toolkit = require('@reduxjs/toolkit');
16
16
  var jsxRuntime = require('@emotion/react/jsx-runtime');
@@ -10255,15 +10255,11 @@ function Widget(props) {
10255
10255
  theme: themeHuma,
10256
10256
  children: jsxRuntime.jsx(reactRedux.Provider, {
10257
10257
  store: store,
10258
- children: jsxRuntime.jsx(webShared.Provider, {
10259
- ...props,
10260
- defaultChainId: chainId,
10261
- children: jsxRuntime.jsx(jotai.Provider, {
10262
- children: jsxRuntime.jsx(ChainSupportProvider, {
10263
- children: jsxRuntime.jsx(NotifiContextWrapper, {
10264
- chainId: chainId,
10265
- children: children
10266
- })
10258
+ children: jsxRuntime.jsx(jotai.Provider, {
10259
+ children: jsxRuntime.jsx(ChainSupportProvider, {
10260
+ children: jsxRuntime.jsx(NotifiContextWrapper, {
10261
+ chainId: chainId,
10262
+ children: children
10267
10263
  })
10268
10264
  })
10269
10265
  })