♻️ Fix hooks in the TabOverview component

This commit is contained in:
Philipp Stracker 2025-02-17 14:08:07 +01:00
parent 180e47fa0a
commit afcadb9508
No known key found for this signature in database

View file

@ -101,9 +101,8 @@ export const useStore = () => {
};
export const useTodos = () => {
const { todos, fetchTodos, dismissTodo, setTodoCompleted, isReady } =
useHooks();
return { todos, fetchTodos, dismissTodo, setTodoCompleted, isReady };
const { todos, fetchTodos, dismissTodo, setTodoCompleted } = useHooks();
return { todos, fetchTodos, dismissTodo, setTodoCompleted };
};
export const useDismissedTodos = () => {