fix(can-list): 국가별로 통화가 표시되도록 수정

This commit is contained in:
2025-10-10 14:32:12 +09:00
parent 36e20bf0d1
commit 41183b4648
2 changed files with 1 additions and 21 deletions

View File

@@ -17,7 +17,7 @@ class CanService(private val repository: CanRepository) {
GeoCountry.KR -> "KRW"
else -> "USD"
}
return repository.findAllByStatus(status = CanStatus.SALE)
return repository.findAllByStatusAndCurrency(status = CanStatus.SALE, currency = currency)
}
fun getCanStatus(member: Member, container: String): GetCanStatusResponse {