diff --git a/app/page.tsx b/app/page.tsx index 6b11987..11b25ec 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -19,7 +19,7 @@ export default function Home() {
diff --git a/components/Card.tsx b/components/Card.tsx index fa6365a..22c8f88 100644 --- a/components/Card.tsx +++ b/components/Card.tsx @@ -33,8 +33,8 @@ export default function Card({ dm, card, position, settings, flipAction }: CardP <> {text.map((t, i) => (
-

{t}

- {i < text.length - 1 &&
} +

{t}

+ {i < text.length - 1 &&
}
))} @@ -54,14 +54,14 @@ export default function Card({ dm, card, position, settings, flipAction }: CardP Card Back
{aria}
diff --git a/components/CopyButton.tsx b/components/CopyButton.tsx index 6d75865..0e59990 100644 --- a/components/CopyButton.tsx +++ b/components/CopyButton.tsx @@ -30,12 +30,15 @@ export default function CopyButton({ } }; - const ttContent = - Array.isArray(tooltip) && tooltip.length > 1 ? (copied ? tooltip[1] : tooltip[0]) : tooltip; + const ttContent = ( + + {Array.isArray(tooltip) && tooltip.length > 1 ? (copied ? tooltip[1] : tooltip[0]) : tooltip} + + ); return (