Create following page displaying all accounts you're following #35 and fix follow bug #68

This commit is contained in:
dragongoose
2023-11-26 20:50:38 -05:00
parent 5bc354aae5
commit 44c5caf00c
5 changed files with 108 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export default {
const index = parsedFollows.indexOf(username)
console.log(index)
if (index === -1) return
parsedFollows = parsedFollows.splice(index, 1)
parsedFollows.splice(index, 1)
console.log(parsedFollows)
this.isFollowing = false
} else {