diff options
author | 2023-02-06 16:33:33 +0000 | |
---|---|---|
committer | 2023-02-06 16:33:33 +0000 | |
commit | e8fcc0bc3f875a6c47ee08afd4ba41f68cc863cf (patch) | |
tree | 7fef33cec6aebaced2c3fa9734e5741a4904ed26 | |
parent | 592386b75541f3b7f7d95c631f86024b7e2d314d (diff) | |
download | astro-e8fcc0bc3f875a6c47ee08afd4ba41f68cc863cf.tar.gz astro-e8fcc0bc3f875a6c47ee08afd4ba41f68cc863cf.tar.zst astro-e8fcc0bc3f875a6c47ee08afd4ba41f68cc863cf.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/errors/errors-data.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/astro/src/core/errors/errors-data.ts b/packages/astro/src/core/errors/errors-data.ts index 566ef1004..b8b729853 100644 --- a/packages/astro/src/core/errors/errors-data.ts +++ b/packages/astro/src/core/errors/errors-data.ts @@ -439,8 +439,9 @@ See https://docs.astro.build/en/guides/server-side-rendering/ for more informati PageNumberParamNotFound: { title: 'Page number param not found.', code: 3021, - message: (paramName: string) => `[paginate()] page number param \`${paramName}\` not found in your filepath.`, - hint: 'Rename your file to \`[page].astro\` or \`[...page].astro\`.' + message: (paramName: string) => + `[paginate()] page number param \`${paramName}\` not found in your filepath.`, + hint: 'Rename your file to `[page].astro` or `[...page].astro`.', }, // Vite Errors - 4xxx UnknownViteError: { |