remove trade history table loader for now
This commit is contained in:
parent
3160dacb92
commit
b2e35ecb28
|
@ -1,10 +1,10 @@
|
|||
import useTradeHistory from '../hooks/useTradeHistory'
|
||||
import useMangoStore from '../stores/useMangoStore'
|
||||
import Loading from './Loading'
|
||||
// import useMangoStore from '../stores/useMangoStore'
|
||||
// import Loading from './Loading'
|
||||
|
||||
const TradeHistoryTable = () => {
|
||||
const tradeHistory = useTradeHistory()
|
||||
const connected = useMangoStore((s) => s.wallet.connected)
|
||||
// const connected = useMangoStore((s) => s.wallet.connected)
|
||||
|
||||
return (
|
||||
<div className={`flex flex-col py-6`}>
|
||||
|
@ -124,7 +124,7 @@ const TradeHistoryTable = () => {
|
|||
<div
|
||||
className={`w-full text-center py-6 text-base bg-th-bkg-1 text-th-fgd-2 rounded-md`}
|
||||
>
|
||||
{connected ? <Loading /> : 'No trade history'}
|
||||
No trade history
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue