diff --git a/components/shell/ConfigurationFlow.tsx b/components/shell/ConfigurationFlow.tsx index 7280a7b..0bb4e14 100644 --- a/components/shell/ConfigurationFlow.tsx +++ b/components/shell/ConfigurationFlow.tsx @@ -97,43 +97,6 @@ export function ConfigurationFlow({ } if (config.needs.key || config.needs.service) { - if (authDid !== config.did) { - return ( - <> - - {`You're`} logged in as {authIdentifier}. Please login as{' '} - {config.handle || 'your Ozone service account'} in order to - configure Ozone. - - - - ) - } - if (config.did.startsWith('did:web:')) { - return ( - <> - - You must configure your identity on your own if {`you're`} using a - did:web. You will need to add a service with id{' '} - {`"atproto_labeler"`} and verification method with id{' '} - {`"atproto_label"`}. - - - - ) - } if (!config.doc) { return ( <> diff --git a/lib/identity.ts b/lib/identity.ts index a8ec3a7..8e4d171 100644 --- a/lib/identity.ts +++ b/lib/identity.ts @@ -83,7 +83,7 @@ export function didDocToData(doc: { const [, id] = s['id'].split('#') acc[id] = { type: s['type'], - serviceEndpoint: s['serviceEndpoint'], + endpoint: s['serviceEndpoint'], } } return acc