feat: latest tasks

This commit is contained in:
2024-09-01 21:44:22 +03:00
parent 45d80b7c86
commit 8b00f043d5
4 changed files with 7 additions and 2 deletions

View File

@@ -57,7 +57,9 @@ const TasksProvider: FC<Props> = ({children}) => {
dispatch(addTask(task));
});
}, []);
return <>{children}</>;
return <>
{children}
</>;
};
export default TasksProvider;