From fb2e42051eaef9caa03cd87508e40c4a18ad8804 Mon Sep 17 00:00:00 2001 From: Mattias Tall Date: Tue, 26 May 2026 10:23:24 +0200 Subject: [PATCH] Fix Watch page crash: import getQueue getQueue was called on the watch page but missing from the import list, causing a ReferenceError that broke the entire /watch/:id route. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/pages/Watch.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/Watch.jsx b/frontend/src/pages/Watch.jsx index 757957a..658339c 100644 --- a/frontend/src/pages/Watch.jsx +++ b/frontend/src/pages/Watch.jsx @@ -6,7 +6,7 @@ import { followChannelByUrl, toggleQueue, toggleLike, getChannelVideos, getChannel, getSettings, updateSettings, getRelatedVideos, getDownloads, rateVideo, getBookmarks, createBookmark, updateBookmark, deleteBookmark, importChapters, clearChapters, - getCollections, addToCollection, + getCollections, addToCollection, getQueue, } from "../api"; import VideoCard from "../components/VideoCard";