From d038a9f52c1e6d2802aedc67907863d1939131e0 Mon Sep 17 00:00:00 2001 From: Jared Date: Tue, 31 Jan 2023 00:28:20 -0500 Subject: [PATCH] Change threshold in NearlyCompletedFunds --- src/views/AdminDashboardView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/AdminDashboardView.vue b/src/views/AdminDashboardView.vue index 1a8e17a..998b3c8 100644 --- a/src/views/AdminDashboardView.vue +++ b/src/views/AdminDashboardView.vue @@ -21,7 +21,7 @@ import { NearlyCompletedFund } from '@/api/types'; const nearlyCompletedFunds = ref([] as NearlyCompletedFund[]); -const threshold = 5000; +const threshold = 15000; const req = await getNearlyCompletedFunds(threshold); if (req?.funds) {