Fix unfollowing projects (#2496)

This commit is contained in:
Geometrically
2024-10-08 15:19:46 -07:00
committed by GitHub
parent fd596bf418
commit a8731b0ca2

View File

@@ -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);
}