mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 14:59:29 -07:00
fix: fix formatting
This commit is contained in:
parent
5200ad3611
commit
1b36959d17
2 changed files with 11 additions and 11 deletions
|
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue