mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 07:32:02 +00:00
fix(useBoard): remove timeout causing to be stuck in loading state
This commit is contained in:
parent
18236ae752
commit
ed7d854a85
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ const useBoard = () => {
|
||||||
}
|
}
|
||||||
}, 'board');
|
}, 'board');
|
||||||
}, []);
|
}, []);
|
||||||
const board = useModelState({ model: 'board', timeout: 1500, action });
|
const board = useModelState({ model: 'board', action });
|
||||||
return [board, loadRange];
|
return [board, loadRange];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue