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 <noreply@anthropic.com>
This commit is contained in:
Mattias Tall
2026-05-26 10:23:24 +02:00
parent ba03245449
commit fb2e42051e

View File

@@ -6,7 +6,7 @@ import {
followChannelByUrl, toggleQueue, toggleLike, getChannelVideos, getChannel, followChannelByUrl, toggleQueue, toggleLike, getChannelVideos, getChannel,
getSettings, updateSettings, getRelatedVideos, getDownloads, rateVideo, getSettings, updateSettings, getRelatedVideos, getDownloads, rateVideo,
getBookmarks, createBookmark, updateBookmark, deleteBookmark, importChapters, clearChapters, getBookmarks, createBookmark, updateBookmark, deleteBookmark, importChapters, clearChapters,
getCollections, addToCollection, getCollections, addToCollection, getQueue,
} from "../api"; } from "../api";
import VideoCard from "../components/VideoCard"; import VideoCard from "../components/VideoCard";