fix: fix formatting

This commit is contained in:
Yarmo Mackenbach 2023-10-04 14:53:11 +02:00
parent 5200ad3611
commit 1b36959d17
No known key found for this signature in database
GPG key ID: 3C57D093219103A3
2 changed files with 11 additions and 11 deletions

View file

@ -216,24 +216,24 @@ export const claimSchema = {
type: 'object',
properties: {
profileName: {
type: "string",
description: "Account name to display in the user interface"
type: 'string',
description: 'Account name to display in the user interface'
},
profileUrl: {
type: ["string", "null"],
description: "Profile URL to link to in the user interface"
type: ['string', 'null'],
description: 'Profile URL to link to in the user interface'
},
proofUrl: {
type: ["string", "null"],
description: "Proof URL to link to in the user interface"
type: ['string', 'null'],
description: 'Proof URL to link to in the user interface'
},
serviceProviderName: {
type: ["string", "null"],
description: "Name of the service provider to display in the user interface"
type: ['string', 'null'],
description: 'Name of the service provider to display in the user interface'
},
serviceProviderId: {
type: ["string", "null"],
description: "Id of the service provider"
type: ['string', 'null'],
description: 'Id of the service provider'
}
}
}

View file

@ -224,7 +224,7 @@ const processAspProfile = async (/** @type {import('doipjs').Profile */ profile)
// Overwrite avatarUrl
// TODO: don't overwrite avatarUrl once it's fully supported
profile.personas[profile.primaryPersonaIndex].avatarUrl =
`https://${process.env.DICEBEAR_API_HOSTNAME || "api.dicebear.com" }/7.x/shapes/svg?seed=${profile.publicKey.fingerprint}&size=128`
`https://${process.env.DICEBEAR_API_HOSTNAME || 'api.dicebear.com'}/7.x/shapes/svg?seed=${profile.publicKey.fingerprint}&size=128`
return profile
}