diff options
-rw-r--r-- | src/components/moments/MomentPost.tsx | 1 |
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); |