remove preloader once initially loaded

This commit is contained in:
jejolare 2025-09-13 22:14:04 +07:00
parent 7c90c084e5
commit 9c42bc1705

View file

@ -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) {