Skip to content

Commit

Permalink
fix: qa issues(#696) (#697)
Browse files Browse the repository at this point in the history
  • Loading branch information
akrudal authored Nov 6, 2024
1 parent e142f14 commit aaa5872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ extension AccountSignUpReactor {
case .setDayValue(let day):
if let day = day {
newState.day = day
newState.isValidDay = day < 31
newState.isValidDay = day <= 31
} else {
newState.isValidDay = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public class BBAlert {

case .takePhoto:
let actions = [
BBAlertAction(title: "셍존 신고 먼저하기", handler: action),
BBAlertAction(title: "생존 신고 먼저하기", handler: action),
BBAlertAction(title: "다음에 하기", style: .cancel)
]
let viewConfig = BBAlertViewConfiguration(
Expand Down

0 comments on commit aaa5872

Please sign in to comment.