Skip to content

Commit

Permalink
Merge pull request #175 from mini-min/release/#174
Browse files Browse the repository at this point in the history
[FIX] #174 - 알림창 문구 수정 (리스트, 로그아웃 뷰)
  • Loading branch information
mini-min authored Dec 20, 2021
2 parents 9dda016 + 2e13430 commit cb5ba08
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 @@ -110,7 +110,7 @@ extension CardListViewController: UITableViewDelegate {
// Swipe Action
func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let deleteAction = UIContextualAction(style: .normal, title: "삭제", handler: { (_ action, _ view, _ success) in
self.makeCancelDeleteAlert(title: "명함 삭제", message: "명함을 정말 삭제하시겠습니까?", cancelAction: { _ in
self.makeCancelDeleteAlert(title: "명함 삭제", message: "명함을 정말 삭제하시겠습니까?\n공유된 명함일 경우, 친구의 명함 모음에서도 해당 명함이 삭제됩니다.", cancelAction: { _ in
// 취소 눌렀을 때 액션이 들어갈 부분
}, deleteAction: { _ in
// FIXME: - 카드 삭제 서버 테스트
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ extension MoreViewController: UITableViewDelegate {
} else if indexPath.section == 1 {
switch indexPath.row {
case 0: // 로그아웃
makeOKCancelAlert(title: "알림", message: "로그아웃을 하시겠습니까?", okAction: { _ in
makeOKCancelAlert(title: "", message: "로그아웃을 하시겠습니까?", okAction: { _ in
UserApi.shared.logout { (error) in
if let error = error {
print(error)
Expand Down

0 comments on commit cb5ba08

Please sign in to comment.