Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
anemne committed Sep 19, 2024
1 parent 2b9aa46 commit 4594350
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/customerCases/CustomerCases.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ const CustomerCases = async ({
<div className={styles.wrapper}>
<Text type="h1"> {customerCases.basicTitle} </Text>
{sharedCustomerCases.map((customerCase: CustomerCase) => (
<div>
<Text key={customerCase._id} type="h2">
{customerCase.basicTitle}
</Text>
<div key={customerCase._id}>
<Text type="h2">{customerCase.basicTitle}</Text>
{customerCase.richText && <RichText value={customerCase.richText} />}
</div>
))}
Expand Down

0 comments on commit 4594350

Please sign in to comment.