Skip to content

Commit

Permalink
fix: remove non-necessary key
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiashader committed Oct 15, 2024
1 parent 8d23455 commit 2236ed3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/core/src/components/date-picker/date-picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -775,9 +775,7 @@ export class DatePicker {
{this.calendar.map((week) => {
return (
<Fragment>
<div key={week.weekNumber} class="calendar-item week-number">
{week.weekNumber}
</div>
<div class="calendar-item week-number">{week.weekNumber}</div>
{week.dayNumbers.map((day) => (
<div
key={day}
Expand Down

0 comments on commit 2236ed3

Please sign in to comment.