Skip to content

Commit

Permalink
docs(fix): func is async
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonraimondi authored Aug 13, 2024
1 parent 2f66e7a commit 49863a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/adapters/vanilla.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ app.post('/oauth2/token', async (c) => {
const authorizationServer = c.get("authorization_server");

const oauthResponse = await authorizationServer
.respondToAccessTokenRequest(requestFromVanilla(request))
.respondToAccessTokenRequest(await requestFromVanilla(request))
.catch(e => {
error(400, e.message);
});
Expand Down

0 comments on commit 49863a2

Please sign in to comment.