From 4ddc63b39c71f5e53e0406b0f2b0a814e355ee33 Mon Sep 17 00:00:00 2001 From: Junseong Park Date: Tue, 22 Oct 2024 09:26:15 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/actions/runtime/middleware.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/actions/runtime/middleware.ts b/packages/astro/src/actions/runtime/middleware.ts index de50b9cb54..5107e10c2d 100644 --- a/packages/astro/src/actions/runtime/middleware.ts +++ b/packages/astro/src/actions/runtime/middleware.ts @@ -25,7 +25,7 @@ export const onRequest = defineMiddleware(async (context, next) => { if (context.request.method === 'POST') { console.warn( yellow('[astro:actions]'), - 'POST requests should not be sent to prerendered pages. If you\'re using Actions, disable prerendering with `export const prerender = false`.', + "POST requests should not be sent to prerendered pages. If you're using Actions, disable prerendering with `export const prerender = false`.", ); } return next();