Unfollow tool for Bluesky

webstorm is overkill sorry jetbros i tried

Changed files
+4 -7
src
+4 -7
src/App.tsx
···
import {
+
type Component,
createEffect,
createSignal,
For,
onMount,
Show,
-
type Component,
} from "solid-js";
import { createStore } from "solid-js/store";
···
if (lastSignedIn) {
try {
-
const session = await getSession(lastSignedIn as At.DID);
-
return session;
+
return await getSession(lastSignedIn as At.DID);
} catch (err) {
localStorage.removeItem("lastSignedIn");
throw err;
···
status: status,
status_label: status_label,
toDelete: false,
-
visible: status == RepoStatus.NONMUTUAL ? false : true,
+
visible: status != RepoStatus.NONMUTUAL,
});
}
setProgress(progress() + 1);
···
<input
type="checkbox"
class="peer sr-only"
-
checked={
-
option.status == RepoStatus.NONMUTUAL ? false : true
-
}
+
checked={option.status != RepoStatus.NONMUTUAL}
onChange={(e) =>
editRecords(
option.status,