diff --git a/components/ChecklistItem/index.js b/components/ChecklistItem/index.js index 58b2a77..79c0e89 100644 --- a/components/ChecklistItem/index.js +++ b/components/ChecklistItem/index.js @@ -40,7 +40,7 @@ class ChecklistItem extends React.Component { } handleSetChecked = () => { - const { isChecked, isCollapsed } = this.state; + const { isChecked } = this.state; const { resource } = this.props; setCheckedStatusById(resource.id, !isChecked); return this.setState({ isChecked: !isChecked, isCollapsed: !isChecked });