diff --git a/src/views/ContactAmountsView.vue b/src/views/ContactAmountsView.vue
index fa02391..76393ea 100644
--- a/src/views/ContactAmountsView.vue
+++ b/src/views/ContactAmountsView.vue
@@ -4,6 +4,11 @@
Given with {{ contact?.name }}
+
+
+ (Only 50 most recent)
+
+
@@ -163,7 +168,7 @@ export default class ContactsView extends Vue {
encodeURIComponent(identity.did) +
"&recipientDid=" +
encodeURIComponent(contact.did);
- const headers = this.getHeaders(identity);
+ const headers = await this.getHeaders(identity);
const resp = await this.axios.get(url, { headers });
if (resp.status === 200) {
result = resp.data.data;