Skip to content

Commit e63de74

Browse files
author
Krzysztof Błażełek
committed
Add missing equals sign
1 parent 721fad3 commit e63de74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers/LaneHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const LaneHelper = {
7474
if (laneIndex < 0) {
7575
return state
7676
}
77-
const cardIndex = state.lanes[laneIndex].cards.findIndex(x => x.id == card.id)
77+
const cardIndex = state.lanes[laneIndex].cards.findIndex(x => x.id === card.id)
7878
if (cardIndex < 0) {
7979
return state
8080
}

0 commit comments

Comments
 (0)