Skip to content

Commit 810f330

Browse files
committed
fix: Added missing swipeGestureEnded data in renderCell function
1 parent faefdb7 commit 810f330

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/SwipeListView.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ class SwipeListView extends PureComponent {
167167
onRowPress: () => this.onRowPress(),
168168
setScrollEnabled: enable => this.setScrollEnabled(enable),
169169
swipeGestureBegan: () => this.rowSwipeGestureBegan(key),
170-
swipeGestureEnded: () => this.rowSwipeGestureEnded(key),
170+
swipeGestureEnded: (swipeKey, data) =>
171+
this.rowSwipeGestureEnded(key, data),
171172
});
172173
} else {
173174
return (

0 commit comments

Comments
 (0)