diff --git a/src/components/screens/allCases/AllCases.tsx b/src/components/screens/allCases/AllCases.tsx index 36274b60..52794053 100644 --- a/src/components/screens/allCases/AllCases.tsx +++ b/src/components/screens/allCases/AllCases.tsx @@ -74,7 +74,7 @@ const CardItem: React.FC = props => { const Item = (props: IItem) => { const propData = props.data.item; const todoList = props.todoList; - let compleatdCount = 0; + let completedCount = 0; todoList.forEach(todo => todo.caseStatus === 'compleated' ? compleatdCount++ : compleatdCount, );