mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-04-14 04:51:58 +01:00
wip
This commit is contained in:
@@ -39,10 +39,6 @@ export const useAdjacentEpisodes = ({
|
||||
limit: 1,
|
||||
});
|
||||
|
||||
console.log(
|
||||
"Prev: ",
|
||||
res.data.Items?.map((i) => i.Name)
|
||||
);
|
||||
return res.data.Items?.[0] || null;
|
||||
},
|
||||
enabled: currentlyPlaying?.item.Type === "Episode",
|
||||
@@ -71,10 +67,6 @@ export const useAdjacentEpisodes = ({
|
||||
limit: 1,
|
||||
});
|
||||
|
||||
console.log(
|
||||
"Next: ",
|
||||
res.data.Items?.map((i) => i.Name)
|
||||
);
|
||||
return res.data.Items?.[0] || null;
|
||||
},
|
||||
enabled: currentlyPlaying?.item.Type === "Episode",
|
||||
|
||||
Reference in New Issue
Block a user