diff --git a/src/views/profile/Main.vue b/src/views/profile/Main.vue index 7678d0c..6dce883 100644 --- a/src/views/profile/Main.vue +++ b/src/views/profile/Main.vue @@ -132,7 +132,7 @@ - @@ -264,6 +264,7 @@ const fetchAccount = async () => { if (data.bank_account) { Object.assign(bankAccount, data.bank_account); + bankAccount.account_date = $h.formatDate(bankAccount.account_date, "DD.MM.YYYY"); localStorage.setItem("bankAccount", JSON.stringify(bankAccount)); } @@ -293,6 +294,6 @@ const fetchAccount = async () => { }; onMounted(async () => { - await fetchAccount(); //getAccount(); + await fetchAccount(); });