@ape.swap/bonds-sdk 2.0.4-testseed.2 → 2.0.4-testseed.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/main.js +2 -0
- package/dist/styles.css +0 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -73095,6 +73095,8 @@ accordionTitle = 'What are Bonds?', accordionBody = 'Body', accordionVisible = f
|
|
|
73095
73095
|
const SDKConfig = useSDKConfig();
|
|
73096
73096
|
// State
|
|
73097
73097
|
const [modalVariant, setModalVariant] = useState(SDKConfig === null || SDKConfig === void 0 ? void 0 : SDKConfig.modalVariant);
|
|
73098
|
+
// Set accordion for alt modal
|
|
73099
|
+
accordionVisible = (SDKConfig === null || SDKConfig === void 0 ? void 0 : SDKConfig.modalVariant) === 'alt' ? true : false;
|
|
73098
73100
|
// Hooks
|
|
73099
73101
|
const userChainId = useChainId();
|
|
73100
73102
|
const { address: account } = useAccount();
|
package/dist/styles.css
CHANGED