Skip to content

Commit

Permalink
Fix: AI 연결 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
sayyyho committed Sep 7, 2024
1 parent f36d786 commit 51948a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ChatBot/ChatBot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const ChatBot = () => {
handleResizeHeight();

try {
const response = await postAIBot({ message });
const response = await postAIBot(message);
if (response && response.data && response.data.data) {
const botResponse = {
text: response.data.data,
Expand Down

0 comments on commit 51948a6

Please sign in to comment.