diff --git a/packages/web/src/routes/$username.tsx b/packages/web/src/routes/$username.tsx index e8abfbe3..2864232f 100644 --- a/packages/web/src/routes/$username.tsx +++ b/packages/web/src/routes/$username.tsx @@ -427,12 +427,6 @@ function StreamPage() { } }, [shouldFetchSpotify]) - // Format remaining time - const remainingMs = Math.max(0, FREE_PREVIEW_MS - watchTime) - const remainingMin = Math.floor(remainingMs / 60000) - const remainingSec = Math.floor((remainingMs % 60000) / 1000) - const remainingFormatted = `${remainingMin}:${remainingSec.toString().padStart(2, "0")}` - // Auth gate - show preview for 5 min, then require login if (sessionLoading) { return ( @@ -520,24 +514,10 @@ function StreamPage() {