Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re authored and matthewp committed Jul 11, 2023
1 parent d135b9c commit c706d7d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/astro/src/core/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,13 @@ export class App {
page.onRequest as MiddlewareResponseHandler,
apiContext,
() => {
return renderPage({ mod, renderContext, env: this.#env, cookies: apiContext.cookies, isCompressHTML });
return renderPage({
mod,
renderContext,
env: this.#env,
cookies: apiContext.cookies,
isCompressHTML,
});
}
);
} else {
Expand All @@ -262,7 +268,7 @@ export class App {
renderContext,
env: this.#env,
cookies: apiContext.cookies,
isCompressHTML
isCompressHTML,
});
}
Reflect.set(request, responseSentSymbol, true);
Expand Down

0 comments on commit c706d7d

Please sign in to comment.