From b778ca8e2269d9ec2c0ab8a4329fae51e540a7a4 Mon Sep 17 00:00:00 2001
From: Dessalines <tyhou13@gmx.com>
Date: Wed, 3 Mar 2021 22:42:11 -0500
Subject: [PATCH] Fixing an issue with remove categories

---
 src/shared/components/create-community.tsx | 19 +++----------------
 1 file changed, 3 insertions(+), 16 deletions(-)

diff --git a/src/shared/components/create-community.tsx b/src/shared/components/create-community.tsx
index e1a9cf8..4817f40 100644
--- a/src/shared/components/create-community.tsx
+++ b/src/shared/components/create-community.tsx
@@ -3,16 +3,8 @@ import { Subscription } from "rxjs";
 import { CommunityForm } from "./community-form";
 import { HtmlTags } from "./html-tags";
 import { Spinner } from "./icon";
-import {
-  CommunityView,
-  SiteView,
-} from "lemmy-js-client";
-import {
-  setIsoData,
-  toast,
-  wsSubscribe,
-  isBrowser,
-} from "../utils";
+import { CommunityView, SiteView } from "lemmy-js-client";
+import { setIsoData, toast, wsSubscribe, isBrowser } from "../utils";
 import { UserService } from "../services";
 import { i18n } from "../i18next";
 
@@ -26,7 +18,7 @@ export class CreateCommunity extends Component<any, CreateCommunityState> {
   private subscription: Subscription;
   private emptyState: CreateCommunityState = {
     site_view: this.isoData.site_res.site_view,
-    loading: true,
+    loading: false,
   };
   constructor(props: any, context: any) {
     super(props, context);
@@ -40,11 +32,6 @@ export class CreateCommunity extends Component<any, CreateCommunityState> {
       toast(i18n.t("not_logged_in"), "danger");
       this.context.router.history.push(`/login`);
     }
-
-    // Only fetch the data if coming from another route
-    if (this.isoData.path == this.context.router.route.match.url) {
-      this.state.loading = false;
-    }
   }
 
   componentWillUnmount() {
-- 
2.44.1