aboutsummaryrefslogtreecommitdiff
path: root/src/screens/moments/TagFriendsScreen.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-05-26 19:16:55 -0400
committerIvan Chen <ivan@tagg.id>2021-05-26 19:16:55 -0400
commit0c512ea9bc2ad75b1ae356fa7166044510750581 (patch)
treea6d4b6cdd7824def711b05f112b0939edafbe766 /src/screens/moments/TagFriendsScreen.tsx
parente2a17e5ec691252164cdd11fb2e769aa8b83addc (diff)
Fix issue for TaggFooter, Delete works
Diffstat (limited to 'src/screens/moments/TagFriendsScreen.tsx')
-rw-r--r--src/screens/moments/TagFriendsScreen.tsx7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/screens/moments/TagFriendsScreen.tsx b/src/screens/moments/TagFriendsScreen.tsx
index 30a7015f..c7b48f03 100644
--- a/src/screens/moments/TagFriendsScreen.tsx
+++ b/src/screens/moments/TagFriendsScreen.tsx
@@ -6,6 +6,7 @@ import {
Keyboard,
KeyboardAvoidingView,
Platform,
+ Settings,
StyleSheet,
TouchableWithoutFeedback,
View,
@@ -102,11 +103,7 @@ const TagFriendsScreen: React.FC<TagFriendsScreenProps> = ({route}) => {
/>
)}
<View style={styles.footerContainer}>
- <TagFriendsFooter
- taggedUsers={tags.map((tag) => tag.user)}
- setTaggedUsers={(users) => null}
- />
- {/* <TagFriendsFooter tags={tags} setTags={setTags} /> */}
+ <TagFriendsFooter tags={tags} setTags={setTags} />
</View>
</View>
</KeyboardAvoidingView>