Browse Source

style: fix HomeView.vue formatting from linter

pull/188/head
Matthew Raymer 2 weeks ago
parent
commit
04178bf9f8
  1. 15
      src/views/HomeView.vue

15
src/views/HomeView.vue

@ -742,12 +742,15 @@ export default class HomeView extends Vue {
});
if (this.activeDid) {
logger.debug("[HomeView] loadNewOffers() - activeDid found, calling API", {
activeDid: this.activeDid,
apiServer: this.apiServer,
isRegistered: this.isRegistered,
lastAckedOfferToUserJwtId: this.lastAckedOfferToUserJwtId,
});
logger.debug(
"[HomeView] loadNewOffers() - activeDid found, calling API",
{
activeDid: this.activeDid,
apiServer: this.apiServer,
isRegistered: this.isRegistered,
lastAckedOfferToUserJwtId: this.lastAckedOfferToUserJwtId,
},
);
try {
const offersToUserData = await getNewOffersToUser(

Loading…
Cancel
Save