removed cache handling.
This commit is contained in:
parent
dd40f55b0a
commit
4f67d58923
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user