@goodaofi/bonds-sdk 3.0.178 → 3.0.179
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 +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -100092,7 +100092,7 @@ const YourGoo = ({ yourGoo, isLoading, isFetching, }) => {
|
|
|
100092
100092
|
symbol: 'sGOO',
|
|
100093
100093
|
},
|
|
100094
100094
|
};
|
|
100095
|
-
return (jsxs(Flex, { sx: { width: '100%', justifyContent: 'center', flexDirection: 'column', alignItems: 'center' }, children: [jsx$2(Text, { sx: { fontSize: '20px', fontWeight: 'bold', opacity: 0.5 }, children: "Your Pending Tokens" }), isLoading
|
|
100095
|
+
return (jsxs(Flex, { sx: { width: '100%', justifyContent: 'center', flexDirection: 'column', alignItems: 'center' }, children: [jsx$2(Text, { sx: { fontSize: '20px', fontWeight: 'bold', opacity: 0.5 }, children: "Your Pending Tokens" }), isLoading ? (jsx$2(Flex, { sx: { justifyContent: 'center', alignItems: 'center', p: '30px' }, children: jsx$2(Spinner, {}) })) : (jsx$2(Flex, { sx: {
|
|
100096
100096
|
flexDirection: ['column', 'column', 'row', 'row'],
|
|
100097
100097
|
width: '100%',
|
|
100098
100098
|
}, children: Object.entries(cardInfo).map(([key, value]) => {
|