diff --git a/app/pages/join.vue b/app/pages/join.vue
index 35c4035..67d919b 100644
--- a/app/pages/join.vue
+++ b/app/pages/join.vue
@@ -121,14 +121,14 @@
Pay what you can
- $0 I need support right now
- - {{ formatTierAmount('5', '') }} I can contribute
+ - {{ formatTierAmount('5') }} I can contribute
-
- {{ formatTierAmount('15', '') }} I can sustain the community
+ {{ formatTierAmount('15') }} I can sustain the community
(suggested)
- - {{ formatTierAmount('30', '') }} I can support others too
+ - {{ formatTierAmount('30') }} I can support others too
-
- {{ formatTierAmount('50', '') }} I want to sponsor multiple
+ {{ formatTierAmount('50') }} I want to sponsor multiple
members
@@ -420,7 +420,6 @@
import { reactive, ref, computed, onMounted, onUnmounted } from "vue";
import { getCircleOptions } from "~/config/circles";
import {
- getContributionOptions,
requiresPayment,
getContributionTierByValue,
getTierAmount,
@@ -467,9 +466,6 @@ const paymentToken = ref(null);
// Circle options from central config
const circleOptions = getCircleOptions();
-// Contribution options from central config
-const contributionOptions = getContributionOptions();
-
// Minimal labels for the dropdown — reactive to cadence.
const contributionItems = computed(() => {
return Object.values(CONTRIBUTION_TIERS).map((tier) => {
@@ -482,8 +478,7 @@ const contributionItems = computed(() => {
});
});
-// Format tier amount for display in tier list
-const formatTierAmount = (value, label) => {
+const formatTierAmount = (value) => {
const tier = getContributionTierByValue(value);
if (!tier || tier.amount === 0) return "$0";
const amt = getTierAmount(tier, cadence.value);