From ed69096ef070a592b90cf32b34aeaed72073fe0d Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Wed, 16 Jul 2025 18:20:57 -0700 Subject: [PATCH] Put resume questions first --- frontend/src/pages/CandidateChatPage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/CandidateChatPage.tsx b/frontend/src/pages/CandidateChatPage.tsx index 6aeafd2..71da23d 100644 --- a/frontend/src/pages/CandidateChatPage.tsx +++ b/frontend/src/pages/CandidateChatPage.tsx @@ -430,9 +430,6 @@ const CandidateChatPage = forwardRef flexWrap: 'wrap', }} > - {selectedCandidate.questions?.map((q, i) => ( - - ))} {resume && defaultQuestions.map((question: string, i) => ( submitQuery={handleSubmitQuestion} /> ))} + {selectedCandidate.questions?.map((q, i) => ( + + ))} {/* Fixed Message Input */}