Skip to content

Commit

Permalink
REFACT :: day_of_weeks
Browse files Browse the repository at this point in the history
โ€ข ์›”, ํ™”, ์ˆ˜, ๋ชฉ, ๊ธˆ, ํ† , ์ผ ์ˆœ์œผ๋กœ ์ •๋ ฌ
โ€ข ์›”์š”์ผ -> ์›” ๋กœ ๋ณ€๊ฒฝ
  • Loading branch information
gurdl0525 committed Apr 15, 2024
1 parent f83571f commit eadec1f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ data class Routine(
exerciseInfoResponseList = exerciseInfoModelList.map {
it.toResponse()
},
dayOfWeeks = dayOfWeeks?.map {
dayOfWeeks = dayOfWeeks?.sorted()?.map {
it.getDisplayName(
TextStyle.FULL,
TextStyle.SHORT,
Locale.KOREA
)
},
Expand All @@ -42,9 +42,9 @@ data class Routine(
exerciseInfoResponseList = exerciseInfoModelList.map {
it.toResponse()
},
dayOfWeeks = dayOfWeeks?.map {
dayOfWeeks = dayOfWeeks?.sorted()?.map {
it.getDisplayName(
TextStyle.FULL,
TextStyle.SHORT,
Locale.KOREA
)
},
Expand Down

0 comments on commit eadec1f

Please sign in to comment.