From 51e67631246c500e866ad285bb6d8a993b299f53 Mon Sep 17 00:00:00 2001 From: Polaris Date: Sun, 21 Jul 2024 11:35:22 -0400 Subject: [PATCH] fixed misaligned text --- app/(authenticated)/chunithm/page.tsx | 2 +- components/scoreplaylog/colums.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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}
); },