removed cache handling.

This commit is contained in:
ashutosh.nehete 2025-04-14 17:57:00 +05:30
parent dd40f55b0a
commit 4f67d58923

View File

@ -10,7 +10,7 @@ export const useTaskList = (projectId, dateFrom, toDate) => {
const fetchList = async () => {
const taskList_cached = getCachedData("taskList");
if (!taskList_cached || taskList_cached?.projectId !== projectId) {
// if (!taskList_cached || taskList_cached?.projectId !== projectId) {
try {
setLoading(true);
const resp = await TasksRepository.getTaskList(
@ -26,14 +26,13 @@ export const useTaskList = (projectId, dateFrom, toDate) => {
console.log(err);
setError(err);
}
} else {
setTaskList(taskList_cached.data);
}
// } else {
// setTaskList(taskList_cached.data);
// }
};
console.log(TaskList)
useEffect( () =>
{
console.log( projectId , " ", dateFrom, "" , toDate)
if (projectId && dateFrom && toDate) {
fetchList();
}