Unfollow tool for Bluesky

fix no account to unfollow notice

Changed files
+1 -2
src
+1 -2
src/App.tsx
···
}
setProgress(progress() + 1);
if (progress() === followCount()) {
+
if (tmpFollows.length === 0) setNotice("No accounts to unfollow");
setFollowRecords(tmpFollows);
setProgress(0);
setFollowCount(0);
}
});
}
-
if (progress() === followCount() && followRecords.length === 0)
-
setNotice("No accounts to unfollow");
};
const unfollow = async () => {