Skip to content

Commit 0fd3772

Browse files
author
Gertjan Reynaert
committed
fix(DuplicateIds): detectDuplicateIds flag didn't work correctly
Thx to Loïc Padier (https://github.com/lPadier) for fixing this issue. I only did commit this myself because somehow Semantic Release broke again
1 parent cc2fe74 commit 0fd3772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/manageTranslations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default ({
9191
},
9292

9393
outputDuplicateKeys: duplicateIds => {
94-
if (detectDuplicateIds) return;
94+
if (!detectDuplicateIds) return;
9595

9696
printers.printDuplicateIds(duplicateIds);
9797
},

0 commit comments

Comments
 (0)