Browse Source

fix type of the raw claim sent

pull/120/head
Trent Larson 3 months ago
parent
commit
5e39b91ee5
  1. 6
      src/views/ClaimAddRawView.vue
  2. 1
      src/views/GiftedDetails.vue

6
src/views/ClaimAddRawView.vue

@ -95,11 +95,7 @@ export default class ClaimAddRawView extends Vue {
// similar code is found in ProjectViewView
async submitClaim() {
const fullClaim: serverUtil.GenericVerifiableCredential = {
"@context": "https://schema.org",
"@type": "AgreeAction",
object: JSON.parse(this.claimStr),
};
const fullClaim = JSON.parse(this.claimStr);
const result = await serverUtil.createAndSubmitClaim(
fullClaim,
await this.getIdentity(this.activeDid),

1
src/views/GiftedDetails.vue

@ -319,7 +319,6 @@ export default class GiftedDetails extends Vue {
this.axios,
this.apiServer,
);
console.log("Got project name from cache", project);
this.projectName = project?.name
? "the project: " + project.name
: "a project";

Loading…
Cancel
Save