You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey In the /services/firebase.js file in the updateFollowedUserFollowers function you named the params of the FieldValue(loggedInUserDocId) but you passed userId from the SuggestedProfile component, at first i taught that you passed the Doc id into the followers array instead of the userId ,
And Thanks for the Tutorial its awesome ! Keep Up Bro !
Hey In the /services/firebase.js file in the updateFollowedUserFollowers function you named the params of the FieldValue(loggedInUserDocId) but you passed userId from the SuggestedProfile component, at first i taught that you passed the Doc id into the followers array instead of the userId ,
And Thanks for the Tutorial its awesome ! Keep Up Bro !
export async function updateFollowedUserFollowers( profileDocId, loggedInUserDocId, isFollowingProfile ) { return firebase .firestore() .collection('users') .doc(profileDocId) .update({ followers: isFollowingProfile ? FieldValue.arrayRemove(loggedInUserDocId) : FieldValue.arrayUnion(loggedInUserDocId) }); }
The text was updated successfully, but these errors were encountered: