Skip to content

Commit 71886a9

Browse files
committed
release
1 parent f8068d3 commit 71886a9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 15.4.1
2+
3+
fix: unique key warning on componentized element [1835](https://github.com/i18next/react-i18next/pull/1835)
4+
15
### 15.4.0
26

37
feat: add meta with codes on warnings to allow conditional logging [1826](https://github.com/i18next/react-i18next/pull/1826)

react-i18next.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,9 @@
444444
function Componentized() {
445445
return react.createElement(react.Fragment, null, comp);
446446
}
447-
return react.createElement(Componentized);
447+
return react.createElement(Componentized, {
448+
key: componentKey
449+
});
448450
};
449451
const generateArrayComponents = (components, translation) => components.map((c, index) => fixComponentProps(c, index, translation));
450452
const generateObjectComponents = (components, translation) => {

0 commit comments

Comments
 (0)