fix(i18n): remove duplicate German mascot GIF keys#2597
Conversation
Three keys (customGifError, customGifHeading, customGifLabel) were duplicated at lines 534-537, causing tsc TS1117 errors. Kept the first occurrence (lines 243-246) and removed the later duplicates.
📝 WalkthroughWalkthroughGerman translation chunk ChangesTranslation Updates
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested labels
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
app/src/lib/i18n/chunks/de-5.tsthat causetsc --noEmitto fail with TS1117 (An object literal cannot have multiple properties with the same name).customGifError,customGifHeading,customGifLabeleach appeared twice (lines 243-246 and 534-537). Kept the first occurrence, removed the duplicates.Test plan
pnpm typecheckpasses (no more TS1117 errors)pnpm lintpasses (no moreno-dupe-keysESLint errors)