diff --git a/docs/plugins/backend-plugin.md b/docs/plugins/backend-plugin.md index 1a487ad8f7..c6f4a50e60 100644 --- a/docs/plugins/backend-plugin.md +++ b/docs/plugins/backend-plugin.md @@ -184,7 +184,7 @@ export async function createRouter( options: RouterOptions, ): Promise { const router = Router(); - + router.post('/example', async (req, res) => { const identity = await identity.getIdentity({ request: req }); ...