remove needless as any
This commit is contained in:
parent
347a4a0b93
commit
413fa63093
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ export class OAuth2ProviderService {
|
|||
return await reply.view('oauth', {
|
||||
transactionId: oauth2.transactionID,
|
||||
clientName: oauth2.client.name,
|
||||
scope: (oauth2.req.scope as any as string[]).join(' '),
|
||||
scope: oauth2.req.scope.join(' '),
|
||||
});
|
||||
});
|
||||
fastify.post('/oauth/decision', async () => { });
|
||||
|
|
Loading…
Reference in a new issue