From c2fcfaeaed82193c775fa89e2c6de54795e3c2b3 Mon Sep 17 00:00:00 2001 From: Phillip Lang Martinez Date: Sun, 21 Jul 2024 20:23:30 -0400 Subject: [PATCH] add link to qort.trade and a refetch button for qort balance --- src/App.tsx | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index ae2bc8a..a23c7e5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -779,7 +779,12 @@ function App() { {qortBalanceLoading && } - {(balance >= 0) && ( + {!qortBalanceLoading && (balance >= 0) && ( + {balance?.toFixed(2)} QORT + + )} )} - + { + chrome.tabs.create({ url: 'https://www.qort.trade' }); + }} + > + Get QORT at qort.trade +