Conversation
jyvnee
approved these changes
Jan 28, 2026
| } | ||
|
|
||
| override suspend fun getPreCertMonth(year: Int, month: Int): Result<List<Int>> { | ||
| return runCatching { |
Collaborator
There was a problem hiding this comment.
[2]: 왜 safeApiCall 안 쓰고 runCatching 쓰셨나요
| ) { | ||
| Image( | ||
| painter = painterResource(R.drawable.img_logo_black), | ||
| painter = painterResource(R.drawable.image_logo_black), |
Collaborator
There was a problem hiding this comment.
[1] 이거 이름 img_logo_black으로 해야 하는거 아닌가요
Comment on lines
+4
to
+9
| return if (this.toString().length == 1) { | ||
| "0$this" | ||
| } else { | ||
| this.toString() | ||
| } | ||
| } |
Collaborator
There was a problem hiding this comment.
[3] 이거 길이 체크 안 해도 this.toString().padStart(2, '0') 이렇게 하거나 "%02d".format(this) 이렇게 써도 되지 않나여?
Comment on lines
+21
to
+27
| fun String.dateString(): String { | ||
| return if (this.length == 1) { | ||
| "0$this" | ||
| } else { | ||
| this | ||
| } | ||
| } |
Collaborator
There was a problem hiding this comment.
[3] 이것도 this.padStart(2, '0') 이거 쓸 수 있을 것 같은뎀
MinseoSONG
approved these changes
Jan 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Work Description ✏️
Screenshot 📸
2026-01-28.11.32.12.mov
To Reviewers 📢