mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 08:24:55 +00:00
- Fixed infinite rendering in the todos page
This commit is contained in:
@ -115,7 +115,7 @@ const ToDosList = ({ isSettings }: { isSettings?: boolean }) => {
|
|||||||
let filteredGroupedTodos = groupToDosByDate(filtered || []);
|
let filteredGroupedTodos = groupToDosByDate(filtered || []);
|
||||||
setGroupedToDos(filteredGroupedTodos || []);
|
setGroupedToDos(filteredGroupedTodos || []);
|
||||||
}
|
}
|
||||||
}, [selectedFilter, toDos]);
|
}, [selectedFilter]);
|
||||||
|
|
||||||
console.log("MEMBERS");
|
console.log("MEMBERS");
|
||||||
console.log(members);
|
console.log(members);
|
||||||
@ -341,7 +341,7 @@ const styles = StyleSheet.create({
|
|||||||
fontSize: 13.2,
|
fontSize: 13.2,
|
||||||
color: "#fd1775",
|
color: "#fd1775",
|
||||||
},
|
},
|
||||||
dropdownStyle: { borderRadius: 6.61, width: 187 },
|
dropdownStyle: { borderRadius: 6.61, height: "100%", width: 187 },
|
||||||
itemStyle: { padding: 0, margin: 0 },
|
itemStyle: { padding: 0, margin: 0 },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user