aboutsummaryrefslogtreecommitdiff
path: root/src/components/taggs
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-05-26 19:08:28 -0400
committerIvan Chen <ivan@tagg.id>2021-05-26 19:08:28 -0400
commite3571b2fcb4a78ea11466ff4bfb0405ae4028aea (patch)
tree8b65dcb7450472327bbd354d45aee820a056127b /src/components/taggs
parentf6cc8c38b03add50c7fe20224fc0d8e70a5bce0e (diff)
Finish logic for draggables, Caption screen logic is done
Diffstat (limited to 'src/components/taggs')
-rw-r--r--src/components/taggs/TaggDraggable.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/taggs/TaggDraggable.tsx b/src/components/taggs/TaggDraggable.tsx
index 06825641..86915bb4 100644
--- a/src/components/taggs/TaggDraggable.tsx
+++ b/src/components/taggs/TaggDraggable.tsx
@@ -26,10 +26,10 @@ interface TaggDraggableProps extends ViewProps {
const TaggDraggable: React.FC<TaggDraggableProps> = (
props: TaggDraggableProps,
) => {
+ const {draggableRef, taggedUser, editingView, deleteFromList} = props;
const navigation = useNavigation();
const dispatch = useDispatch();
const state = useSelector((rs: RootState) => rs);
- const {draggableRef, taggedUser, editingView, deleteFromList} = props;
let uriX = require('../../assets/images/draggableX.png');
let uriTip = require('../../assets/images/Tagg-Triangle.png');