diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/generate-locales.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/generate-locales.ts b/scripts/generate-locales.ts index 933215a1..2d6c252e 100644 --- a/scripts/generate-locales.ts +++ b/scripts/generate-locales.ts @@ -335,8 +335,7 @@ async function normalizeLocaleFile(filePath: string, definitionKey: string) { const isDynamicFile = compareString.startsWith('mergeArrays'); const isNonApplicable = compareString.startsWith('null'); - const isFrozenData = compareString.startsWith('Object.freeze'); - if (isDynamicFile || isNonApplicable || isFrozenData) { + if (isDynamicFile || isNonApplicable) { return; } |
