Skip to content

Commit

Permalink
Fix Could not find messages for locale code warning message (#2488)
Browse files Browse the repository at this point in the history
  • Loading branch information
motopods authored Oct 11, 2023
1 parent b818011 commit 8a33fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export async function loadLocale(
) {
const loaders = localeMessages[locale]
if (loaders == null) {
console.warn(formatMessage('Could not find messages for locale code' + locale))
console.warn(formatMessage('Could not find messages for locale code: ' + locale))
return
}

Expand Down

0 comments on commit 8a33fec

Please sign in to comment.