TF-4064 Fix drag but con not drop on mobile

This commit is contained in:
dab246
2025-11-14 13:26:34 +07:00
committed by Dat H. Pham
parent e8133367c4
commit db22415a3e
@@ -299,7 +299,6 @@ class _RecipientComposerWidgetState extends State<RecipientComposerWidget> {
},
);
if (PlatformInfo.isWeb || widget.isTestingForWeb) {
return DragTarget<DraggableEmailAddress>(
builder: (context, candidateData, rejectedData) {
return tagEditor;
@@ -320,9 +319,6 @@ class _RecipientComposerWidgetState extends State<RecipientComposerWidget> {
}
},
);
} else {
return tagEditor;
}
},
)
)