]> Untitled Git - lemmy-ui.git/commitdiff
Fixing an issue with remove categories
authorDessalines <tyhou13@gmx.com>
Thu, 4 Mar 2021 03:42:11 +0000 (22:42 -0500)
committerDessalines <tyhou13@gmx.com>
Thu, 4 Mar 2021 03:42:11 +0000 (22:42 -0500)
src/shared/components/create-community.tsx

index e1a9cf8f4d01ec0a3b692c77161da31968cd3838..4817f40c125231456f6438b8a64714f8f3b2731d 100644 (file)
@@ -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() {