From 014275f723e78a53f5cf533f3611c8b273ea9f08 Mon Sep 17 00:00:00 2001 From: Prospector Date: Sun, 14 Apr 2024 14:49:48 -0700 Subject: [PATCH] Remove incorrect minimum withdraw amount from dashboard --- pages/dashboard/index.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pages/dashboard/index.vue b/pages/dashboard/index.vue index a0d59d7082..3863dff382 100644 --- a/pages/dashboard/index.vue +++ b/pages/dashboard/index.vue @@ -94,14 +94,13 @@ {{ $formatMoney(auth.user.payout_data.balance, true) }} Withdraw earnings - ${{ minWithdraw }} is the withdraw minimum @@ -127,8 +126,6 @@ const [{ data: projects }] = await Promise.all([ ), ]) -const minWithdraw = ref(0.26) - const downloadsProjectCount = computed( () => projects.value.filter((project) => project.downloads > 0).length )