aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-05-25 14:27:37 -0700
committerShravya Ramesh <shravs1208@gmail.com>2021-05-25 14:27:37 -0700
commit43e44ae964d3102949d8eb79d2525434826b97a0 (patch)
tree512daa7971ec1170b6a5aaa54d6f02c39d67ff10
parent5100fd682c5cb026d8f35098455e5bb6a068afaf (diff)
Remove success message
-rw-r--r--src/components/moments/MomentPost.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/moments/MomentPost.tsx b/src/components/moments/MomentPost.tsx
index 804d089f..72d669a2 100644
--- a/src/components/moments/MomentPost.tsx
+++ b/src/components/moments/MomentPost.tsx
@@ -58,7 +58,6 @@ const MomentPost: React.FC<MomentPostProps> = ({item, userXId, screenType}) => {
*/
const removeTag = async () => {
const success = await deleteMomentTag(momentTagId);
- Alert.alert(success ? 'Success' : 'Failed');
if (success) {
const filteredTags = tags.filter((tag) => tag.user.id !== loggedInUserId);
setTags(filteredTags);