From 469491f09c6c831a7ca23be545d7b618c449268c Mon Sep 17 00:00:00 2001 From: nklhrstv Date: Tue, 17 May 2022 21:22:48 +0300 Subject: [PATCH] adapt to new api of board hook --- src/routes/Board/Board.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/Board/Board.js b/src/routes/Board/Board.js index fef7ae766..0f8f123fc 100644 --- a/src/routes/Board/Board.js +++ b/src/routes/Board/Board.js @@ -8,7 +8,7 @@ const useContinueWatchingPreview = require('./useContinueWatchingPreview'); const styles = require('./styles'); const Board = () => { - const board = useBoard(); + const [board] = useBoard(); const profile = useProfile(); const streamingServer = useStreamingServer(); const continueWatchingPreview = useContinueWatchingPreview();