@ape.swap/bonds-sdk 2.7.7-test.1 → 2.7.7-test.2
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 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -73924,7 +73924,7 @@ const BondModalMinTierHeader = ({ minTier }) => {
|
|
|
73924
73924
|
width: ['100%', '100%', '100%', 'auto', 'auto'],
|
|
73925
73925
|
}, children: Object.values(TIERS_NAMES).map((tier, index) => {
|
|
73926
73926
|
if (index >= minTier) {
|
|
73927
|
-
return (jsx$2("img", { src: `/images/launch/${tier.toLowerCase()}.png`, alt: "minTier", style: { width: '30px', height: '30px', marginLeft: '3px', zIndex: 1 } }));
|
|
73927
|
+
return (jsx$2("img", { src: `/images/launch/${tier.toLowerCase()}.png`, alt: "minTier", style: { width: '30px', height: '30px', marginLeft: '3px', zIndex: 1 } }, `tier-logo-${index}`));
|
|
73928
73928
|
}
|
|
73929
73929
|
return (jsx$2(Box$1, { sx: {
|
|
73930
73930
|
width: '27px',
|
|
@@ -73933,7 +73933,7 @@ const BondModalMinTierHeader = ({ minTier }) => {
|
|
|
73933
73933
|
zIndex: 1,
|
|
73934
73934
|
backgroundColor: 'rgb(128 128 128 / 25%)',
|
|
73935
73935
|
borderRadius: '100px',
|
|
73936
|
-
} }));
|
|
73936
|
+
} }, `notier-logo-${index}`));
|
|
73937
73937
|
}) })) }));
|
|
73938
73938
|
};
|
|
73939
73939
|
|