Skip to content

Commit b4d98f5

Browse files
authored
Merge pull request #1179 from oraidex/ui-improve
fix: button back pool & action hide small balance bridge
2 parents 97ec899 + a0041fc commit b4d98f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/Balance/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ const Balance: React.FC<BalanceProps> = () => {
870870

871871
const listTokens = useMemo(() => {
872872
return getFilterTokens(filterNetworkUI);
873-
}, [filterNetworkUI, otherChainTokens, oraichainTokens]);
873+
}, [filterNetworkUI, otherChainTokens, oraichainTokens, hideOtherSmallAmount]);
874874

875875
const totalUsd = getTotalUsd(amounts, prices, tokenPoolPrices);
876876

src/pages/Pools/PoolDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ const PoolDetail: React.FC = () => {
165165
<div
166166
className={styles.back}
167167
onClick={() => {
168-
navigate(`/pools`);
168+
navigate(-1);
169169
}}
170170
>
171171
<BackIcon className={styles.backIcon} />

0 commit comments

Comments
 (0)