Unfollow tool for Bluesky

unfollow notice plural fix

Changed files
+3 -1
src
+3 -1
src/App.tsx
···
setFollowRecords([]);
setProgress(0);
setFollowCount(0);
-
setNotice(`Unfollowed ${writes.length} accounts`);
+
setNotice(
+
`Unfollowed ${writes.length} account${writes.length > 1 ? "s" : ""}`,
+
);
};
return (