Unfollow tool for Bluesky

add yourself to unfollow

Changed files
+12
src
+12
src/App.tsx
···
DELETED,
DEACTIVATED,
SUSPENDED,
+
YOURSELF,
}
type FollowRecord = {
···
<Match when={record.status == RepoStatus.SUSPENDED}>
Suspended
</Match>
+
<Match when={record.status == RepoStatus.YOURSELF}>
+
Literally Yourself
+
</Match>
</Switch>
</div>
</label>
···
handle: res.data.handle,
uri: record.uri,
status: RepoStatus.BLOCKEDBY,
+
toBeDeleted: false,
+
});
+
} else if (res.data.did.includes(appAgent.did!)) {
+
setFollowRecords(followRecords.length, {
+
did: record.value.subject,
+
handle: res.data.handle,
+
uri: record.uri,
+
status: RepoStatus.YOURSELF,
toBeDeleted: false,
});
}