diff --git a/daily-thought-frontend/src/pages/questions.tsx b/daily-thought-frontend/src/pages/questions.tsx
index 8d0ef8b946d8a94d65ba6b5cc22dcf8416b57706..8614a8db6c488bf718a32aa6a285d0f7d3c79083 100644
--- a/daily-thought-frontend/src/pages/questions.tsx
+++ b/daily-thought-frontend/src/pages/questions.tsx
@@ -48,6 +48,7 @@ const Questions = () => {
 
   const onQuestionSubmit = async (): Promise<void> => {
     await insertNewQuestion(newQuestion);
+    setNewQuestion('');
     setRehydrateQuestions(true);
   };