Unfollow tool for Bluesky

fix indexes

Changed files
+4 -3
src
+4 -3
src/App.tsx
···
});
updateNotices(
"Found account you are blocked by: " +
-
unfollowRecords[i + n].did +
+
followRecords[i + n].value.subject +
" (" +
res.data.profiles[i].handle +
")",
···
status: RepoStatus.DELETED,
});
updateNotices(
-
"Found deleted account: " + unfollowRecords[i + n].did,
+
"Found deleted account: " + followRecords[i + n].value.subject,
);
} else if (form.deactivated && e.message.includes(" deactivated")) {
unfollowRecords.push({
···
status: RepoStatus.DEACTIVATED,
});
updateNotices(
-
"Found deactivated account: " + unfollowRecords[i + n].did,
+
"Found deactivated account: " +
+
followRecords[i + n].value.subject,
);
}
}