From 1283cfd19f4106ff98133ba2262cc5963e6d6815 Mon Sep 17 00:00:00 2001 From: natemoo-re Date: Mon, 7 Aug 2023 17:54:43 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/core/app/index.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/astro/src/core/app/index.ts b/packages/astro/src/core/app/index.ts index 37d6fb72e..34e55f93d 100644 --- a/packages/astro/src/core/app/index.ts +++ b/packages/astro/src/core/app/index.ts @@ -282,10 +282,7 @@ export class App { * If it is a known error code, try sending the according page (e.g. 404.astro / 500.astro). * This also handles pre-rendered /404 or /500 routes */ - async #renderError( - request: Request, - { status, response: originalResponse }: RenderErrorOptions - ) { + async #renderError(request: Request, { status, response: originalResponse }: RenderErrorOptions) { const errorRouteData = matchRoute('/' + status, this.#manifestData); const url = new URL(request.url); if (errorRouteData) {