diff --git a/components/sidebar/context/aaveV2/SidebarAaveV2Borrow.vue b/components/sidebar/context/aaveV2/SidebarAaveV2Borrow.vue index 7923e36..50f46af 100644 --- a/components/sidebar/context/aaveV2/SidebarAaveV2Borrow.vue +++ b/components/sidebar/context/aaveV2/SidebarAaveV2Borrow.vue @@ -35,7 +35,7 @@ @@ -212,6 +212,7 @@ export default defineComponent({ formatUsdMax, formatUsd, maxLiquidation, + liquidation, liquidationPrice, liquidationMaxPrice, errorMessages, diff --git a/pages/aave-v2.vue b/pages/aave-v2.vue index 3b00a21..4886640 100644 --- a/pages/aave-v2.vue +++ b/pages/aave-v2.vue @@ -131,7 +131,7 @@
- Max - {{ formatPercent(position.maxLiquidation) }} + Max - {{ formatPercent(maxLiquidation) }} @@ -207,7 +207,8 @@ export default defineComponent({ totalSupply, totalBorrow, status, - liquidation + liquidation, + maxLiquidation, } = useAaveV2Position(); const { div } = useBigNumber(); @@ -236,7 +237,8 @@ export default defineComponent({ formatUsd, formatPercent, color, - text + text, + maxLiquidation, }; } }); diff --git a/pages/mainnet/compound.vue b/pages/mainnet/compound.vue index a8d6372..fde5688 100644 --- a/pages/mainnet/compound.vue +++ b/pages/mainnet/compound.vue @@ -131,7 +131,7 @@
- Max - {{ formatPercent(position.maxLiquidation) }} + Max - {{ formatPercent(liquidation) }} @@ -205,7 +205,7 @@ export default defineComponent({ totalSupply, totalBorrow, status, - liquidation + liquidation, } = useCompoundPosition(); const { div } = useBigNumber(); @@ -234,7 +234,8 @@ export default defineComponent({ formatUsd, formatPercent, color, - text + text, + liquidation, }; } });