When we open an entry page like Revenue, we have an error in the browser console:

It's probably coming from useByIdQuery :
export const useByIdQuery = (
collectionName: Collections,
id: string,
options?: UseQueryOptions
) => {
return useQuery(
[collectionName, id],
() => fetchById(collectionName, id),
options as any
);
};