chore: revert space added by formatter

This commit is contained in:
Lachezar Lechev 2025-10-27 15:21:45 +02:00
parent 04e6780395
commit 7456e8f15a
No known key found for this signature in database
GPG key ID: 69BDCB3ED8CE8037

View file

@ -566,7 +566,7 @@ const Player = ({ urlParams, queryParams }) => {
const videoId = player.selected ? player.selected.streamRequest.path.id : null;
const video = metaItem ? metaItem.videos.find(({ id }) => id === videoId) : null;
const videoInfo = video && video.season && video.episode ? ` (${video.season}x${video.episode})` : null;
const videoInfo = video && video.season && video.episode ? ` (${video.season}x${video.episode})`: null;
const videoTitle = video ? `${video.title}${videoInfo}` : null;
const metaTitle = metaItem ? metaItem.name : null;
const imageUrl = metaItem ? metaItem.logo : null;