From d2f2d7442a4dccb99c5247111429149061a00613 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 21 Jun 2023 08:16:11 -0400 Subject: [PATCH] Fixing handlePostNsfwChange. --- src/shared/components/post/post-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/post/post-form.tsx b/src/shared/components/post/post-form.tsx index 6e47759..2475d49 100644 --- a/src/shared/components/post/post-form.tsx +++ b/src/shared/components/post/post-form.tsx @@ -524,7 +524,7 @@ export class PostForm extends Component { id="post-nsfw" type="checkbox" checked={this.state.form.nsfw} - onChange={linkEvent(this, this.handlePostNsfwChange)} + onChange={linkEvent(this, handlePostNsfwChange)} /> -- 2.44.1