summaryrefslogtreecommitdiffstats
path: root/ui/src/components/community.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-31 22:34:08 -0500
committerDessalines <tyhou13@gmx.com>2020-01-31 22:34:08 -0500
commit8ec104cb762f58e83fde262ee25c23ddf49730bf (patch)
tree880fd0f56ac033ade8e70825f808d82c22dc4d93 /ui/src/components/community.tsx
parent8036474ddad2f20c27a2fb023395306d6b9e577d (diff)
Mostly done eliminating recurring fetches.
Diffstat (limited to 'ui/src/components/community.tsx')
-rw-r--r--ui/src/components/community.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/src/components/community.tsx b/ui/src/components/community.tsx
index a88ec952..866b9eec 100644
--- a/ui/src/components/community.tsx
+++ b/ui/src/components/community.tsx
@@ -43,7 +43,6 @@ interface State {
export class Community extends Component<any, State> {
private subscription: Subscription;
- private postFetcher: any;
private emptyState: State = {
community: {
id: null,
@@ -107,7 +106,6 @@ export class Community extends Component<any, State> {
componentWillUnmount() {
this.subscription.unsubscribe();
- clearInterval(this.postFetcher);
}
// Necessary for back button for some reason