We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3168a48 commit 2fccce5Copy full SHA for 2fccce5
2 files changed
.changeset/pretty-bikes-relate.md
@@ -0,0 +1,5 @@
1
+---
2
+"frontend": patch
3
4
+
5
+SOV-5075: Fix osSOV USD value
apps/frontend/src/hooks/useDollarValue.ts
@@ -34,6 +34,10 @@ export function useDollarValue(
34
);
35
36
const entry = useMemo(() => {
37
+ if (asset.toUpperCase() === COMMON_SYMBOLS.OSSOV) {
38
+ return COMMON_SYMBOLS.SOV;
39
+ }
40
41
if (isRskChain(chain)) {
42
if (asset.toUpperCase() === COMMON_SYMBOLS.ZUSD) {
43
return COMMON_SYMBOLS.XUSD;
0 commit comments