fix: skip duplicate row fetch when opening new kanban card

This commit is contained in:
Philipinho
2026-06-15 22:26:59 +01:00
parent 58cead4199
commit f16c027701
@@ -552,6 +552,10 @@ export function useKanbanCreateCardMutation() {
), ),
}; };
}); });
queryClient.setQueryData<IBaseRow>(
["base-row", newRow.pageId, newRow.id],
newRow,
);
}, },
onError: (error) => { onError: (error) => {
notifications.show({ notifications.show({