Skip to content

Commit 88f0daf

Browse files
fix(product-card): fix object chaining typo
1 parent ec8be1f commit 88f0daf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ProductCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ const ProductCard: React.FC<IProps> = ({
197197
</SubjectPill>
198198
))}
199199
{hasRepoData &&
200-
data.repository.language.nodes.map(
200+
data.repository.languages.nodes.map(
201201
({ name }: { name: string }, idx: number) => (
202202
<SubjectPill key={idx} subject={name}>
203203
{name.toUpperCase()}

0 commit comments

Comments
 (0)