From f3c96e9ea896cd2fd83b0c6497f12c928009871b Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Wed, 29 Jan 2025 20:40:08 +0300 Subject: [PATCH] fix card header color --- apps/web/components/profile/cards/components/card-header.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/components/profile/cards/components/card-header.tsx b/apps/web/components/profile/cards/components/card-header.tsx index 5e8f5d1..8328b2d 100644 --- a/apps/web/components/profile/cards/components/card-header.tsx +++ b/apps/web/components/profile/cards/components/card-header.tsx @@ -5,7 +5,7 @@ type Props = { export function ProfileCardHeader({ title }: Readonly) { return (
-

{title}

+

{title}

);