[Задача 12799] Исправил ошибку при удалении опечатки

При удалении опечатки список становился пустым, не зависимо от кол-ва опечаток
parent 7aafcc34
......@@ -79,7 +79,7 @@ export default class SiteList extends React.Component {
removeTypoFromList = (typoId) => {
this.setState({
typos: this.state.typos.filter((typo) => {typo.id !== typoId})
typos: this.state.typos.filter((typo) => typo.id !== typoId)
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment