From a8731b0ca24f4aec9df6ce6d9cecceb81e35c2b7 Mon Sep 17 00:00:00 2001 From: Geometrically <18202329+Geometrically@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:19:46 -0700 Subject: [PATCH] Fix unfollowing projects (#2496) --- apps/frontend/src/pages/collection/[id].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/pages/collection/[id].vue b/apps/frontend/src/pages/collection/[id].vue index e38d2a698..7dfd6a7ad 100644 --- a/apps/frontend/src/pages/collection/[id].vue +++ b/apps/frontend/src/pages/collection/[id].vue @@ -612,7 +612,7 @@ const visibility = ref(collection.value.status); const removeProjects = ref([]); async function unfollowProject(project) { - await userUnfollowProject(project); + await userFollowProject(project); projects.value = projects.value.filter((x) => x.id !== project.id); }