diff --git a/app/(authenticated)/chunithm/page.tsx b/app/(authenticated)/chunithm/page.tsx index bf3134a..4163392 100644 --- a/app/(authenticated)/chunithm/page.tsx +++ b/app/(authenticated)/chunithm/page.tsx @@ -2,9 +2,10 @@ import ChunithmScorePlaylog from "@/components/scoreplaylog/page"; const ChunithmPage = () => { return ( -
- - +
+
+ +
); }; diff --git a/app/globals.css b/app/globals.css index c260faa..18afb7a 100644 --- a/app/globals.css +++ b/app/globals.css @@ -73,4 +73,5 @@ body { @apply bg-background text-foreground; } - } \ No newline at end of file + } + diff --git a/components/scoreplaylog/data-table.tsx b/components/scoreplaylog/data-table.tsx index 50dd5bd..2d4c278 100644 --- a/components/scoreplaylog/data-table.tsx +++ b/components/scoreplaylog/data-table.tsx @@ -34,7 +34,7 @@ export function DataTable({ }); return ( -
+
{table.getHeaderGroups().map((headerGroup) => ( @@ -60,7 +60,7 @@ export function DataTable({ data-state={row.getIsSelected() && "selected"} > {row.getVisibleCells().map((cell) => ( - + {flexRender(cell.column.columnDef.cell, cell.getContext())} ))} diff --git a/components/scoreplaylog/page.tsx b/components/scoreplaylog/page.tsx index f1b38d6..6be4b7f 100644 --- a/components/scoreplaylog/page.tsx +++ b/components/scoreplaylog/page.tsx @@ -5,7 +5,7 @@ import { z } from "zod"; import { columns } from "./colums"; const userSchema = z.object({ - UserId: z.number() + UserId: z.number(), }); const ChunithmScorePlaylog = async () => { @@ -23,10 +23,7 @@ const ChunithmScorePlaylog = async () => { const songs = await getSongsWithTitles(TypedUser.data.UserId); - return ( - - - ); + return ; }; export default ChunithmScorePlaylog;