Sorting different on backend vs frontend in React
When logging on the backend the sort is completed correctly, but the object received on the frontend is sorted by _creationtime.
const tasks = useQuery(api.tasks.getByProjectId, project?._id ? {projectId: project._id}: "skip");Can sort tasks again on the frontend, but wondering if there's anything obvious I'm missing that would cause this behaviour!
