diff --git a/src/libs/endorserServer.ts b/src/libs/endorserServer.ts index 3dfb815..82025b9 100644 --- a/src/libs/endorserServer.ts +++ b/src/libs/endorserServer.ts @@ -587,7 +587,12 @@ export async function setPlanInCache( planCache.set(handleId, planSummary); } -export async function getNewOffersToUser(axios: Axios, apiServer: string, activeDid: string, lastAckedOfferToUserJwtId?: string) { +export async function getNewOffersToUser( + axios: Axios, + apiServer: string, + activeDid: string, + lastAckedOfferToUserJwtId?: string, +) { let url = `${apiServer}/api/v2/report/offers?recipientDid=${activeDid}`; if (lastAckedOfferToUserJwtId) { url += "&afterId=" + lastAckedOfferToUserJwtId; diff --git a/src/views/DIDView.vue b/src/views/DIDView.vue index cff39df..aac5913 100644 --- a/src/views/DIDView.vue +++ b/src/views/DIDView.vue @@ -200,7 +200,9 @@
-
Claims That Involve {{ isMyDid ? "You" : "Them" }}
+
+ Claims That Involve {{ isMyDid ? "You" : "Them" }} +