Skip to content

Commit

Permalink
fix: key 변경 #222
Browse files Browse the repository at this point in the history
  • Loading branch information
1119wj committed Dec 1, 2024
1 parent b33cd52 commit 4d72ce1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Place/PlaceListPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ const PlaceListPanel = ({
{places.map((place, index) => (
<Draggable
isDragDisabled={!isDraggable}
key={place.google_place_id.toString()}
draggableId={place.id.toString()}
key={place.id?.toString()}
draggableId={place.id?.toString()}
index={index}
>
{(provided, snapshot) => (
Expand Down

0 comments on commit 4d72ce1

Please sign in to comment.