Skip to content

Commit 209944a

Browse files
Apply suggestions from code review
Co-authored-by: Afshin Taylor Darian <[email protected]>
1 parent 8cf196c commit 209944a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/about/LargePortraitCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import React from "react";
66
import Avatar from "./Avatar";
77

88
export function Distinction({ person }) {
9-
const HasPersonDisctinction = person.distinctionTitle.length !== 0;
9+
const HasPersonDistinction = person.distinctionTitle.length !== 0;
1010

1111
return (
1212
<div>
13-
{HasPersonDisctinction ? (
13+
{HasPersonDistinction ? (
1414
<ul style={{paddingLeft: "0px"}}>
1515
{person.distinctionTitle.map((distinction, index) => (
1616
<li className="items-list" key={person.firstName}>

0 commit comments

Comments
 (0)