Skip to content

Commit

Permalink
🐛 Fix: Solve Key Property Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
amirzenoozi committed Jul 28, 2024
1 parent 94359a2 commit 4f0f6b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/home/components/medium/medium.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { MediumCard } from './type';
import './medium.style.scss';



function MediumSection() {
const CN = new ClassNames('medium');
const blogNewsList: Array<MediumCard> = [
Expand Down Expand Up @@ -46,12 +45,13 @@ function MediumSection() {
<section className={CN.generate('')}>
<Container>
<FlexRow stretch={true}>
{blogNewsList.map((item: MediumCard) => (
{blogNewsList.map((item: MediumCard, index: number) => (
<FlexCol
xs={24}
sm={12}
md={8}
xl={6}
key={index}
>
<a
className={CN.generate('card')}
Expand Down

0 comments on commit 4f0f6b5

Please sign in to comment.