diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 548bbbfdc2..cc65e69eaa 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -37,7 +37,6 @@
-
@@ -118,7 +117,6 @@
-
@@ -199,7 +197,6 @@
-
@@ -280,7 +277,6 @@
-
@@ -361,7 +357,6 @@
-
@@ -442,7 +437,6 @@
-
@@ -523,7 +517,6 @@
-
@@ -604,7 +597,6 @@
-
diff --git a/src/features/auth/login/data/servers.ts b/src/features/auth/login/data/servers.ts
index 2ed17b0194..bab176f7e1 100644
--- a/src/features/auth/login/data/servers.ts
+++ b/src/features/auth/login/data/servers.ts
@@ -91,14 +91,8 @@ export const SERVERS_BY_CATEGORY = {
"psychedelia.ink",
"ani.social",
],
- activism: [
- "rblind.com",
- "badatbeing.social",
- "beehaw.org",
- "sirpnk.net",
- "merv.news",
- ],
- lgbt: ["femboys.bar", "transfem.space", "lemmy.blahaj.zone"],
+ activism: ["rblind.com", "badatbeing.social", "slrpnk.net"],
+ lgbt: ["femboys.bar", "lemmy.blahaj.zone"],
academia: ["mander.xyz", "literature.cafe", "futurology.today"],
furry: ["pawb.social", "yiffit.net"],
};
diff --git a/src/features/community/list/GuestCommunitiesList.tsx b/src/features/community/list/GuestCommunitiesList.tsx
index ab60b9ab1d..9982300d04 100644
--- a/src/features/community/list/GuestCommunitiesList.tsx
+++ b/src/features/community/list/GuestCommunitiesList.tsx
@@ -12,7 +12,7 @@ import { CommunitiesListProps } from "./CommunitiesList";
*
* TODO in the future Local/All will be configurable in an explore view
*/
-const SHOW_LOCAL_ONLY = ["lemmynsfw.com", "beehaw.org"];
+const SHOW_LOCAL_ONLY = ["lemmynsfw.com"];
export default function GuestCommunitiesList({ actor }: CommunitiesListProps) {
const [communities, setCommunities] = useState();