Skip to content

Commit

Permalink
update TokenDetailScreen.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
nattadex committed Jul 17, 2024
1 parent 9b6358a commit ab30fb9
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,12 @@ const usePoolPairToken = (
const t = tokens.find((t) => t.id === token.id);

if (t !== undefined) {
setToken(t);
if (t.id === "3") {
const csUSDTtoken = { ...token, displaySymbol: "csUSDT" };
setToken(csUSDTtoken);
} else {
setToken(t);
}
}

const poolpair = pairs.find((p) => {
Expand Down

0 comments on commit ab30fb9

Please sign in to comment.