From 9dc68611a11c103d034dcf249e5fb30a0aed65bc Mon Sep 17 00:00:00 2001
From: Prospector <6166773+Prospector@users.noreply.github.com>
Date: Thu, 18 Apr 2024 16:35:37 -0700
Subject: [PATCH] Remove incorrect minimum withdraw amount from dashboard
(#1683)
---
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 a0d59d708..3863dff38 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
)