Skip to content

Commit

Permalink
Merge pull request #82 from TripInfoWeb/dev_mettings
Browse files Browse the repository at this point in the history
반복 key props 누락된 부분 수정
  • Loading branch information
ssssksss authored Jun 29, 2024
2 parents 1453602 + e5eb9bf commit 573b9b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/components/meetings/modal/GatheringScheduleModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const GatheringScheduleModal = (props: IGatheringScheduleModalProps) => {
>
{Array.from([...Array(24).fill(0)], (i, index) => index).map(
(i) => (
<option value={i} selected={i == 0}>
<option value={i} selected={i == 0} key={i}>
{i}
</option>
),
Expand All @@ -163,7 +163,7 @@ const GatheringScheduleModal = (props: IGatheringScheduleModalProps) => {
>
{Array.from([...Array(6).fill(0)], (i, index) => index * 10).map(
(i) => (
<option value={i} selected={i == 0}>
<option value={i} selected={i == 0} key={i}>
{i}
</option>
),
Expand Down Expand Up @@ -194,7 +194,7 @@ const GatheringScheduleModal = (props: IGatheringScheduleModalProps) => {
>
{Array.from([...Array(24).fill(0)], (i, index) => index).map(
(i) => (
<option value={23 - i} selected={i == 0}>
<option value={23 - i} selected={i == 0} key={i}>
{23 - i}
</option>
),
Expand All @@ -215,7 +215,7 @@ const GatheringScheduleModal = (props: IGatheringScheduleModalProps) => {
>
{Array.from([...Array(6).fill(0)], (i, index) => index * 10).map(
(i) => (
<option value={i} selected={i == 0}>
<option value={i} selected={i == 0} key={i}>
{i}
</option>
),
Expand Down
4 changes: 2 additions & 2 deletions src/components/meetings/modal/GatheringSettingModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const GatheringSettingModal = (props: IGatheringSettingModalProps) => {
>
{Array.from([...Array(24).fill(0)], (i, index) => index).map(
(i) => (
<option value={23 - i} selected={i == 0}>
<option value={23 - i} selected={i == 0} key={i}>
{23 - i}
</option>
),
Expand All @@ -116,7 +116,7 @@ const GatheringSettingModal = (props: IGatheringSettingModalProps) => {
>
{Array.from([...Array(6).fill(0)], (i, index) => index * 10).map(
(i) => (
<option value={i} selected={i == 0}>
<option value={i} selected={i == 0} key={i}>
{i}
</option>
),
Expand Down

0 comments on commit 573b9b1

Please sign in to comment.