remove preloader once initially loaded
This commit is contained in:
parent
7c90c084e5
commit
9c42bc1705
1 changed files with 1 additions and 2 deletions
|
|
@ -64,7 +64,6 @@ export function useTradingData({
|
|||
}
|
||||
|
||||
async function updateOrders() {
|
||||
setOrdersLoading(true);
|
||||
const result = await getOrdersPage(pairId);
|
||||
if (!result.success) return;
|
||||
setOrdersHistory(result?.data || []);
|
||||
|
|
@ -83,7 +82,7 @@ export function useTradingData({
|
|||
}
|
||||
|
||||
async function fetchTrades() {
|
||||
setTradesLoading(true);
|
||||
// setTradesLoading(true);
|
||||
const result = await getTrades(pairId);
|
||||
|
||||
if (result.success) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue