Unfollow tool for Bluesky

set loginState to false when logging out

Changed files
+1
src
+1
src/App.tsx
···
const logoutBsky = async () => {
await agent.signOut();
};
return (
···
const logoutBsky = async () => {
await agent.signOut();
+
setLoginState(false);
};
return (