Fix record show page request errors (#6345)

- Removed getCursorFromRecordId
- Get cursor from request
- Fixed problem with navigation and optimistic rendering
This commit is contained in:
Lucas Bordeau
2024-07-19 18:43:46 +02:00
committed by GitHub
parent 12c33159e0
commit 187b6f9335
4 changed files with 23 additions and 46 deletions

View File

@ -20,8 +20,8 @@ export const getQueryVariablesFromView = ({
}) => {
if (!isDefined(view)) {
return {
filter: {},
orderBy: [],
filter: undefined,
orderBy: undefined,
};
}