From 0abeb48b7f376032db2349c87589bda9a52484a7 Mon Sep 17 00:00:00 2001 From: Travis Semple Date: Fri, 29 Nov 2024 13:15:51 -0800 Subject: [PATCH] Update transactions-factory.ts Change debounce to 1000ms from 2000ms --- auth-web/src/composables/transactions-factory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth-web/src/composables/transactions-factory.ts b/auth-web/src/composables/transactions-factory.ts index 81ab40ff4..ddd2ea369 100644 --- a/auth-web/src/composables/transactions-factory.ts +++ b/auth-web/src/composables/transactions-factory.ts @@ -103,7 +103,7 @@ export const useTransactions = () => { console.error('Failed to get transaction list.', error) } transactions.loading = false - }, 2000, { leading: true, trailing: true }) as (filterField?: string, value?: any, viewAll?: boolean) => Promise + }, 1000, { leading: true, trailing: true }) as (filterField?: string, value?: any, viewAll?: boolean) => Promise const getTransactionReport = async () => { try {