fix(useBoard): remove timeout causing to be stuck in loading state

This commit is contained in:
Tim 2024-03-04 08:25:57 +01:00
parent 18236ae752
commit ed7d854a85

View file

@ -22,7 +22,7 @@ const useBoard = () => {
}
}, 'board');
}, []);
const board = useModelState({ model: 'board', timeout: 1500, action });
const board = useModelState({ model: 'board', action });
return [board, loadRange];
};