diff --git a/components/ViewMemberDialog.vue b/components/ViewMemberDialog.vue index c94a73d..6b0d487 100644 --- a/components/ViewMemberDialog.vue +++ b/components/ViewMemberDialog.vue @@ -269,24 +269,20 @@
- -
- Select the date when the payment was received + Select the date when the payment was received (Monaco timezone)
@@ -488,10 +484,8 @@ watch(showPaymentDateDialog, (isOpen) => { }); // Methods -const handleDateUpdate = (date: Date | null) => { - if (date) { - selectedPaymentDate.value = date.toISOString().split('T')[0]; - } +const handleDateUpdate = (dateString: string) => { + selectedPaymentDate.value = dateString; }; const cancelPaymentDialog = () => {