Skip to content

Commit

Permalink
No Commit Message
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenThrust committed Feb 25, 2024
1 parent 3f0f4cf commit 87ef7c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions clients/users/static/users/scripts/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,8 @@ quickTransferBtn.addEventListener("click", (e) => {

quickDepositBtn.addEventListener("click", (e) => {
const amount = e.target.parentNode.parentElement.children[1].children[1].value
if (amount && acctNo) {
if (amount) {
const form = new FormData();

form.append("account_type", amount);
postData("/transactions/deposit/", form, true);
}
Expand Down

0 comments on commit 87ef7c7

Please sign in to comment.