From ed7d854a85b29d8ad1bc647927e2aeb62b2a2158 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 4 Mar 2024 08:25:57 +0100 Subject: [PATCH] fix(useBoard): remove timeout causing to be stuck in loading state --- src/routes/Board/useBoard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Board/useBoard.js b/src/routes/Board/useBoard.js index 06f043d52..30aa1ff3b 100644 --- a/src/routes/Board/useBoard.js +++ b/src/routes/Board/useBoard.js @@ -22,7 +22,7 @@ const useBoard = () => { } }, 'board'); }, []); - const board = useModelState({ model: 'board', timeout: 1500, action }); + const board = useModelState({ model: 'board', action }); return [board, loadRange]; };