diff --git a/package.json b/package.json index 324f1c9..997f85a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mars", "homepage": "./", - "version": "1.3.1", + "version": "1.3.2", "private": false, "license": "SEE LICENSE IN LICENSE FILE", "scripts": { diff --git a/src/components/common/BorrowCapacity/BorrowCapacity.module.scss b/src/components/common/BorrowCapacity/BorrowCapacity.module.scss index bee670d..8839225 100644 --- a/src/components/common/BorrowCapacity/BorrowCapacity.module.scss +++ b/src/components/common/BorrowCapacity/BorrowCapacity.module.scss @@ -10,8 +10,6 @@ justify-content: space-between; .limitText { - display: flex; - align-items: flex-end; opacity: 0; transition: opacity 0.8s; transition-delay: 1.6s; diff --git a/src/components/common/DisplayCurrency/DisplayCurrency.tsx b/src/components/common/DisplayCurrency/DisplayCurrency.tsx index dcd1490..7585758 100644 --- a/src/components/common/DisplayCurrency/DisplayCurrency.tsx +++ b/src/components/common/DisplayCurrency/DisplayCurrency.tsx @@ -39,7 +39,7 @@ export const DisplayCurrency = ({ maxDecimals={displayCurrency.decimals} /> - {displayCurrency.suffix && {displayCurrency.suffix}} + {displayCurrency.suffix && {' ' + displayCurrency.suffix}} ) } diff --git a/src/components/common/Header/IncentivesButton.module.scss b/src/components/common/Header/IncentivesButton.module.scss index 7343eff..4e36b5f 100644 --- a/src/components/common/Header/IncentivesButton.module.scss +++ b/src/components/common/Header/IncentivesButton.module.scss @@ -29,6 +29,7 @@ position: relative; display: flex; align-items: center; + gap: space(1); height: 100%; padding-inline-start: rem-calc(8); } diff --git a/src/configs/osmo-test-4.ts b/src/configs/osmo-test-4.ts index c10a608..5eedae3 100644 --- a/src/configs/osmo-test-4.ts +++ b/src/configs/osmo-test-4.ts @@ -84,8 +84,8 @@ export const NETWORK_CONFIG: NetworkConfig = { }, displayCurrency: { denom: 'ibc/88D70440A05BFB25C7FF0BA62DA357EAA993CB1B036077CF1DAAEFB28721D935', - prefix: '$', - suffix: '', + prefix: '', + suffix: 'axlUSDC', decimals: 2, }, appUrl: 'https://testnet.osmosis.zone', diff --git a/src/configs/osmosis-1.ts b/src/configs/osmosis-1.ts index 3f70150..2603a1b 100644 --- a/src/configs/osmosis-1.ts +++ b/src/configs/osmosis-1.ts @@ -71,8 +71,8 @@ export const NETWORK_CONFIG: NetworkConfig = { }, displayCurrency: { denom: 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - prefix: '$', - suffix: '', + prefix: '', + suffix: 'axlUSDC', decimals: 2, }, appUrl: 'https://app.osmosis.zone', diff --git a/src/store/slices/vaults.ts b/src/store/slices/vaults.ts index b9121c6..6d427dc 100644 --- a/src/store/slices/vaults.ts +++ b/src/store/slices/vaults.ts @@ -182,7 +182,6 @@ export const vaultsSlice = (set: NamedSet, get: GetState): VaultsS set({ aprs: newAprs, }) - get().addAprToVaults(newAprs) }