We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107f333 commit d6d1b16Copy full SHA for d6d1b16
src/main/java/com/back/domain/chatbot/service/ChatbotService.java
@@ -495,7 +495,13 @@ private ChatResponseDto handleStepRecommendation(ChatRequestDto requestDto) {
495
break;
496
497
case 3:
498
- stepData = null;
+ stepData = new StepRecommendationResponseDto(
499
+ 3,
500
+ null,
501
502
503
+ false
504
+ );
505
message = "좋아요! 이제 원하는 칵테일 스타일을 자유롭게 말씀해주세요 💬\n 없으면 'x', 또는 '없음' 과 같이 입력해주세요!";
506
type = MessageType.INPUT;
507
0 commit comments