Skip to content

Commit

Permalink
fix: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-Ju-won committed Aug 1, 2023
1 parent 9dfe2b2 commit a9e4203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function App() {
console.log(message);
console.log(message.trim().length)
if (message.trim().length <= 5) {
setAianswer("죄송합니다. 입력하신 \""+message+"\"는 너무 짧아 정확한 답변을 제공하기 어려운 점 양해해주시기 바랍니다.정확하고 효과적인 답변을 위해 더욱 구체적으로 질문해주시기 바랍니다.");
setAianswer("죄송합니다. 입력하신 \""+message+"\"는 너무 짧아 정확한 답변을 제공하기 어려운 점 양해해주시기 바랍니다. 정확하고 효과적인 답변을 위해 더욱 구체적으로 질문해주시기 바랍니다.");
} else {
const response = await fetch('/generate', {
method: 'POST',
Expand Down

0 comments on commit a9e4203

Please sign in to comment.