From 53a9ecc29e6145c8becd909f9e85ed37671b2c91 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Fri, 29 Nov 2024 09:26:24 -0600 Subject: [PATCH] update card header text size --- components/Global/card.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Global/card.tsx b/components/Global/card.tsx index 61377f4d..0e7aadf9 100644 --- a/components/Global/card.tsx +++ b/components/Global/card.tsx @@ -1,6 +1,6 @@ import { ReactNode } from "react"; import type { CardProps as TamaguiCardProps } from "tamagui" -import { H2, Image, Paragraph, Card as TamaguiCard } from "tamagui"; +import { H3, Image, Card as TamaguiCard } from "tamagui"; import { useItemImage } from "../../api/queries/image"; import { useApiClientContext } from "../jellyfin-api-provider"; import { ImageType } from "@jellyfin/sdk/lib/generated-client/models"; @@ -29,7 +29,7 @@ export function Card(props: CardProps) { > { props.children && ( -

{ props.children }

+

{ props.children }

)}