Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 3fb3593

Browse files
committed
fix: key candidates by "id"
1 parent a6340e2 commit 3fb3593

File tree

1 file changed

+1
-1
lines changed
  • src/routes/PositionDetails/components/PositionCandidates

1 file changed

+1
-1
lines changed

src/routes/PositionDetails/components/PositionCandidates/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const PositionCandidates = ({ position, statusFilterKey, updateCandidate }) => {
168168
{filteredCandidates.length > 0 && (
169169
<div styleName="table">
170170
{pageCandidates.map((candidate) => (
171-
<div styleName="table-row" key={candidate.userId}>
171+
<div styleName="table-row" key={candidate.id}>
172172
<div styleName="table-cell cell-user">
173173
<User
174174
user={{

0 commit comments

Comments
 (0)