From 095acc216af32bd4fc88867097c06f585be6a0a4 Mon Sep 17 00:00:00 2001 From: Gregor Lohaus Date: Sat, 14 Mar 2026 18:37:58 +0100 Subject: [PATCH] remove example data --- src/app/music/page.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/app/music/page.tsx b/src/app/music/page.tsx index 1d0d177..ce082bb 100644 --- a/src/app/music/page.tsx +++ b/src/app/music/page.tsx @@ -8,7 +8,6 @@ import AnimateTextIn from "../_components/Animated/AnimateIn"; import { ScrollArea } from "~/components/ui/scroll-area"; export default function MusicPage() { const { data: tracks, isLoading } = trpc.music.list.useQuery(); - const randdata = Array.from({ length: 100 }, (_, i) => ({ id: i, value: Math.floor(Math.random() * 50) })); useTimeLine(tracks) return ( @@ -42,18 +41,6 @@ export default function MusicPage() { ))} - {randdata.map((d, i) => ( - - - - {d.value} - - - - {d.value} - - - ))} {!isLoading && !tracks?.length &&
No music yet.