summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/src/core/errors/errors-data.ts5
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: {