From b28689ad06a8250acad5d4b83556c09c5f5e2d7f Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Thu, 20 Jul 2023 20:15:17 -0600 Subject: [PATCH] walk back edits that were forward-looking but broken --- src/views/ContactsView.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/ContactsView.vue b/src/views/ContactsView.vue index ccd2479..3bcfe72 100644 --- a/src/views/ContactsView.vue +++ b/src/views/ContactsView.vue @@ -303,16 +303,15 @@ export default class ContactsView extends Vue { async loadGives() { const handleResponse = ( resp, - allData, descriptions, confirmed, unconfirmed, useRecipient, ) => { if (resp.status === 200) { + const allData = resp.data.data; for (const give of allData) { const otherDid = useRecipient ? give.recipientDid : give.agentDid; - console.log("give from", otherDid, "is", give.amount, "HUR"); if (give.unit === "HUR") { if (give.amountConfirmed) { const prevAmount = confirmed[otherDid] || 0;