From c220f53b218c57c0d70464026eb972b84c580950 Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 2 Sep 2022 01:29:14 +0000 Subject: [PATCH] [ci] format --- packages/astro/src/core/build/internal.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/core/build/internal.ts b/packages/astro/src/core/build/internal.ts index 0c7c346ae..7d8485fe5 100644 --- a/packages/astro/src/core/build/internal.ts +++ b/packages/astro/src/core/build/internal.ts @@ -141,8 +141,8 @@ export function* getPageDatasByClientOnlyID( // BUG! The compiler partially resolves .jsx to remove the file extension so we have to check again. // We should probably get rid of all `@fs` usage and always fully resolve via Vite, // but this would be a bigger change. - if(!pageBuildDatas) { - pathname = `/@fs${prependForwardSlash(removeFileExtension(viteid))}` + if (!pageBuildDatas) { + pathname = `/@fs${prependForwardSlash(removeFileExtension(viteid))}`; pageBuildDatas = pagesByClientOnly.get(pathname); } if (pageBuildDatas) {