Skip to content

Commit eb02006

Browse files
authored
Merge pull request #23829 from Expensify/andrew-drag-native
Return null for native Drag and Drop consumers to prevent Drag UI on native
2 parents 24ed1be + 62622e9 commit eb02006

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/DragAndDrop/Consumer/index.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import dragAndDropConsumerPropTypes from './dragAndDropConsumerPropTypes';
22

3-
function DragAndDropConsumer({children}) {
4-
return children;
3+
function DragAndDropConsumer() {
4+
return null;
55
}
66

77
DragAndDropConsumer.propTypes = dragAndDropConsumerPropTypes;

0 commit comments

Comments
 (0)