0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

Fix typo in error message for IncorrectStrategyForI18n (#10768)

This commit is contained in:
liruifengv 2024-04-12 15:07:07 +08:00 committed by GitHub
parent ed2f4aa122
commit 17c2bb1aad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1079,7 +1079,7 @@ export const IncorrectStrategyForI18n = {
name: 'IncorrectStrategyForI18n',
title: "You can't use the current function with the current strategy",
message: (functionName: string) =>
`The function \`${functionName}\' can only be used when the \`i18n.routing.strategy\` is set to \`"manual"\`.`,
`The function \`${functionName}\` can only be used when the \`i18n.routing.strategy\` is set to \`"manual"\`.`,
} satisfies ErrorData;
/**