We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef719ef commit 4603736Copy full SHA for 4603736
src/translator.ts
@@ -78,12 +78,6 @@ export class TranslationManager {
78
code,
79
createIntl({
80
locale: code,
81
- onError: (...args) => {
82
- // Suppress missing translation errors
83
- if ((args[0].code as string) === "MISSING_DATA") {
84
- return;
85
- }
86
- },
87
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
88
messages: translations[code]
89
})
0 commit comments