diff --git a/app/(authenticated)/chunithm/page.tsx b/app/(authenticated)/chunithm/page.tsx index 81a94dc..2cbfe09 100644 --- a/app/(authenticated)/chunithm/page.tsx +++ b/app/(authenticated)/chunithm/page.tsx @@ -4,7 +4,7 @@ import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; const ChunithmPage = () => { return (
- + Scores Customize diff --git a/components/scoreplaylog/colums.tsx b/components/scoreplaylog/colums.tsx index 3caad4d..8c00eb2 100644 --- a/components/scoreplaylog/colums.tsx +++ b/components/scoreplaylog/colums.tsx @@ -33,7 +33,7 @@ export const columns: ColumnDef[] = [ const jacketPath = row.original.jacketPath?.replace(".dds", ".png"); const [isLoading, setIsLoading] = useState(true); return ( -
+
{isLoading || !jacketPath ? ( ) : ( @@ -44,7 +44,7 @@ export const columns: ColumnDef[] = [ className="w-8 h-8 inline-block mr-2" /> )} -
{row.original.title}
+ {row.original.title}
); },