diff --git a/resources/views/pages/association/profile.blade.php b/resources/views/pages/association/profile.blade.php index 4cfb070..cf35477 100644 --- a/resources/views/pages/association/profile.blade.php +++ b/resources/views/pages/association/profile.blade.php @@ -29,7 +29,7 @@ state(['events' => []]); state(['payments' => []]); state(['invoice' => null]); state(['qrCode' => null]); -state(['amountToPay' => 21]); +state(['amountToPay' => 21000]); state(['currentYearIsPaid' => false]); state(['currentPubkey' => null]); state(['currentPleb' => null]); @@ -58,7 +58,7 @@ on([ ]) ->where('pubkey', $pubkey)->first(); if ($this->currentPleb->association_status === \App\Enums\AssociationStatus::ACTIVE) { - $this->amountToPay = 21; + $this->amountToPay = 21000; } if ($this->currentPleb->paymentEvents->count() < 1) { $this->createPaymentEvent(); @@ -360,7 +360,7 @@ $loadEvents = function () {