From 9904ac74d92c3ca61cc11fee34f1589ba4069f61 Mon Sep 17 00:00:00 2001 From: ScreenCom User Date: Thu, 27 Jun 2024 16:40:15 +0200 Subject: [PATCH] chore: update README.mdx (#6121) Added a missing backtick that breaks layout --- packages/console/src/assets/docs/guides/web-express/README.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/src/assets/docs/guides/web-express/README.mdx b/packages/console/src/assets/docs/guides/web-express/README.mdx index bc957f100..bc13e20d5 100644 --- a/packages/console/src/assets/docs/guides/web-express/README.mdx +++ b/packages/console/src/assets/docs/guides/web-express/README.mdx @@ -135,7 +135,7 @@ After signing out, it'll be great to redirect your user back to your website. Le In Logto SDK, you can use the `withLogto` middleware to get `req.user.isAuthenticated` to check the authentication status, if the user is signed in, the value will be `true`, otherwise, the value will be `false`. -``ts +```ts import { withLogto } from '@logto/express'; app.use(withLogto(config));