Unfollow tool for Bluesky

make non mutual follows hidden by default

Changed files
+4 -2
src
+4 -2
src/App.tsx
···
status: status,
status_label: status_label,
toBeDeleted: false,
-
visible: true,
+
visible: status == RepoStatus.NONMUTUAL ? false : true,
});
}
setProgress(progress() + 1);
···
<input
type="checkbox"
class="peer sr-only"
-
checked
+
checked={
+
option.status == RepoStatus.NONMUTUAL ? false : true
+
}
onChange={(e) =>
editRecords(
option.status,