From 8fec2dee0b344ef2d9f5d9b2d62d66040eb7ae85 Mon Sep 17 00:00:00 2001 From: nklhrstv Date: Wed, 25 Mar 2020 18:51:04 +0200 Subject: [PATCH] remove the timeout of the continue watching state listener --- src/routes/Board/useContinueWatching.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/routes/Board/useContinueWatching.js b/src/routes/Board/useContinueWatching.js index ab13697e0..5bc2387d7 100644 --- a/src/routes/Board/useContinueWatching.js +++ b/src/routes/Board/useContinueWatching.js @@ -25,8 +25,7 @@ const useContinueWatching = () => { return useModelState({ model: 'continue_watching', map: mapContinueWatchingState, - init: initContinueWatchingState, - timeout: 5000 + init: initContinueWatchingState }); };