From d79b8f9b04846fce588845d36574e76a299cab44 Mon Sep 17 00:00:00 2001 From: GloomyMono Date: Fri, 28 Jun 2024 00:10:39 +0800 Subject: [PATCH] Docs: Remove unused import (#1616) --- docs/pages/getting-started/astro.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/pages/getting-started/astro.md b/docs/pages/getting-started/astro.md index 81e378528..0bca5bc68 100644 --- a/docs/pages/getting-started/astro.md +++ b/docs/pages/getting-started/astro.md @@ -65,7 +65,6 @@ It's a bit verbose, but it just reads the session cookie, validates it, and sets ```ts // src/middleware.ts import { lucia } from "./auth"; -import { verifyRequestOrigin } from "lucia"; import { defineMiddleware } from "astro:middleware"; export const onRequest = defineMiddleware(async (context, next) => {