From 8e9afd459a01eb3fabc680917821411bb15539a8 Mon Sep 17 00:00:00 2001 From: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Date: Fri, 19 May 2023 19:11:56 +0530 Subject: [PATCH] fix: create issue state not clearing on create more (#1082) --- apps/app/components/issues/form.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app/components/issues/form.tsx b/apps/app/components/issues/form.tsx index 8d9c03463..f09e5aedd 100644 --- a/apps/app/components/issues/form.tsx +++ b/apps/app/components/issues/form.tsx @@ -160,6 +160,7 @@ export const IssueForm: FC = ({ }, description_html: "

", }); + editorRef?.current?.clearEditor(); }; const handleAiAssistance = async (response: string) => {