diff --git a/CHANGELOG.md b/CHANGELOG.md index b47c6037..9f24d66b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Outdated registration and reset password link [#220](https://github.com/IN-CORE/incore-ui/issues/220) +- Typo in delete dfr3 mapping [#223](https://github.com/IN-CORE/incore-ui/issues/223) ## [1.13.0] - 2024-08-21 diff --git a/src/components/DFR3Viewer.jsx b/src/components/DFR3Viewer.jsx index 2d8c4f0f..7e646024 100644 --- a/src/components/DFR3Viewer.jsx +++ b/src/components/DFR3Viewer.jsx @@ -407,7 +407,7 @@ const DFR3Viewer = () => { }; const deleteMappingConfirmed = () => { - deleteItemById("mapping", selectedMapping.id)(dispatch); + deleteItemById("mappings", selectedMapping.id)(dispatch); setSelectedMapping(""); setConfirmOpen(false); };