Update PlayerView.tsx

This commit is contained in:
Pas 2025-12-17 15:47:53 -07:00
parent 647a4e8279
commit 28527618a9

View file

@ -31,6 +31,8 @@ import { getProgressPercentage, useProgressStore } from "@/stores/progress";
import { needsOnboarding } from "@/utils/onboarding";
import { parseTimestamp } from "@/utils/timestamp";
import { BlurEllipsis } from "./layouts/SubPageLayout";
export function RealPlayerView() {
const navigate = useNavigate();
const params = useParams<{
@ -205,6 +207,7 @@ export function RealPlayerView() {
return (
<PlayerPart backUrl={backUrl} onMetaChange={metaChange}>
{status !== playerStatus.PLAYING ? <BlurEllipsis /> : null}
{status === playerStatus.IDLE ? (
<MetaPart onGetMeta={handleMetaReceived} />
) : null}