From 52eca60cfa3e022c9c7daaf68d703367dcf08141 Mon Sep 17 00:00:00 2001 From: "Kim, Joon" Date: Tue, 10 Feb 2026 23:07:50 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9E=90=EB=A3=8C=20=ED=8F=AC=ED=95=A8?= =?UTF-8?q?=20=EC=A1=B0=ED=9A=8C=20=EC=BF=BC=EB=A6=AC=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=9E=90=EB=A3=8C=EB=A7=8C=20=EC=A1=B0=ED=9A=8C=ED=95=98?= =?UTF-8?q?=EB=8D=98=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../goodspace/bllsoneshot/repository/task/TaskRepository.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt b/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt index 3fa5f36..718dce9 100644 --- a/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt +++ b/src/main/kotlin/goodspace/bllsoneshot/repository/task/TaskRepository.kt @@ -28,7 +28,6 @@ interface TaskRepository : JpaRepository { SELECT t FROM Task t WHERE t.mentee.id = :userId AND t.date = :date - AND t.isResource = true """ ) fun findCurrentTasksIncludeResource(userId: Long, date: LocalDate): List