From c3b572d7d15fcff386e675322c750f51cd7f4449 Mon Sep 17 00:00:00 2001 From: KTH1007 Date: Mon, 29 Dec 2025 20:26:12 +0900 Subject: [PATCH] =?UTF-8?q?fix/#193:=20=ED=94=BC=EB=93=9C=EB=B0=B1=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=83=81=ED=83=9C=20=EC=A1=B0?= =?UTF-8?q?=EA=B1=B4=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../example/nexus/app/feedback/service/FeedbackService.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/com/example/nexus/app/feedback/service/FeedbackService.java b/src/main/java/com/example/nexus/app/feedback/service/FeedbackService.java index bd653be..8734e46 100644 --- a/src/main/java/com/example/nexus/app/feedback/service/FeedbackService.java +++ b/src/main/java/com/example/nexus/app/feedback/service/FeedbackService.java @@ -110,11 +110,6 @@ public FeedbackResponse submitFeedback(FeedbackSubmitRequest request, Long userI throw new GeneralException(ErrorStatus.FEEDBACK_ALREADY_EXISTS); } - // 승인 상태 체크 (TEST_COMPLETE) - if (!participation.isTestCompleted()) { - throw new GeneralException(ErrorStatus.PARTICIPATION_NOT_TEST_COMPLETED); - } - Feedback feedback = Feedback.builder() .participation(participation) .overallSatisfaction(request.overallSatisfaction())