Skip to content

Commit 0cebead

Browse files
committed
fix: issue with InstrumentCard heading color
1 parent 2641115 commit 0cebead

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/web/src/features/instruments/components/InstrumentCard/InstrumentCard.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,7 @@ export const InstrumentCard = ({ instrument, onClick }: InstrumentCardProps) =>
126126
</div>
127127
</div>
128128
<div className="col-span-6 flex flex-grow flex-col gap-2">
129-
<Heading className="text-primary" variant="h4">
130-
{instrument.details.title}
131-
</Heading>
129+
<Heading variant="h4">{instrument.details.title}</Heading>
132130
<div className="flex flex-col gap-2 text-sm tracking-tight">
133131
{content.map((item) => {
134132
if (item.kind === 'link' && !item.href) {

0 commit comments

Comments
 (0)