[ci] format

This commit is contained in:
matthewp 2022-08-31 20:14:25 +00:00 committed by fredkbot
parent 294122b4e4
commit fa48d01109

View file

@ -37,12 +37,12 @@ export function start(manifest: SSRManifest, options: Options) {
// If the static file can't be found
if (fileResp.status == 404) {
// Render the astro custom 404 page
return await app.render(request);
// Render the astro custom 404 page
return await app.render(request);
// If the static file is found
// If the static file is found
} else {
return fileResp;
return fileResp;
}
};