File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
packages/astro/src/core/errors Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' astro ' : patch
3+ ---
4+
5+ Fix formatting in the ` NoMatchingRenderer ` error message.
Original file line number Diff line number Diff line change @@ -167,10 +167,10 @@ export const AstroErrorData = {
167167
168168${
169169 validRenderersCount > 0
170- ? `There ${ plural ? 'are. ' : 'is. ' } ${ validRenderersCount } renderer${
171- plural ? 's. ' : ''
170+ ? `There ${ plural ? 'are' : 'is' } ${ validRenderersCount } renderer${
171+ plural ? 's' : ''
172172 } configured in your \`astro.config.mjs\` file,
173- but ${ plural ? 'none were. ' : 'it was not. ' } able to server-side render \`${ componentName } \`.`
173+ but ${ plural ? 'none were' : 'it was not' } able to server-side render \`${ componentName } \`.`
174174 : `No valid renderer was found ${
175175 componentExtension
176176 ? `for the \`.${ componentExtension } \` file extension.`
You can’t perform that action at this time.
0 commit comments