diff --git a/src/shared/components/post-form.tsx b/src/shared/components/post-form.tsx index 5ee3841f..e8a614ff 100644 --- a/src/shared/components/post-form.tsx +++ b/src/shared/components/post-form.tsx @@ -90,8 +90,8 @@ export class PostForm extends Component { constructor(props: any, context: any) { super(props, context); - this.fetchSimilarPosts = debounce(this.fetchSimilarPosts).bind(this); - this.fetchPageTitle = debounce(this.fetchPageTitle).bind(this); + this.fetchSimilarPosts = debounce(this.fetchSimilarPosts.bind(this)); + this.fetchPageTitle = debounce(this.fetchPageTitle.bind(this)); this.handlePostBodyChange = this.handlePostBodyChange.bind(this); this.state = this.emptyState;