Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ”€ :: (#637) μŠ€ν”Œλž˜μ‰¬(인트둜) μž„μ‹œ 둜직 제거 #644

Merged
merged 6 commits into from
Jun 23, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -154,23 +154,21 @@ private extension IntroViewController {
dismissOnOverlayTapAndPull: false
)

#warning("도메인 λ³€κ²½μœΌλ‘œ 항상 failure > showTabBar() ν˜ΈμΆœμ€ μΆ”ν›„ μ§€μ›Œμ•Ό 함")
case let .failure(error):
owner.lottiePlay(specialLogo: false)
owner.showTabBar()
/*
owner.showBottomSheet(
content: owner.textPopUpFactory.makeView(
text: error.asWMError.errorDescription ?? "",
cancelButtonIsHidden: true,
confirmButtonText: nil,
cancelButtonText: nil,
completion: nil,
cancelCompletion: nil
),
dismissOnOverlayTapAndPull: false
)
*/
owner.showBottomSheet(
content: owner.textPopUpFactory.makeView(
text: error.asWMError.errorDescription ?? "",
cancelButtonIsHidden: true,
confirmButtonText: "μž¬μ‹œλ„",
cancelButtonText: nil,
completion: {
owner.input.fetchAppCheck.onNext(())
},
cancelCompletion: nil
),
dismissOnOverlayTapAndPull: false
)
}
})
.disposed(by: disposeBag)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// Extension+Notification.Name.swift
// Utility
//
// Created by yongbeomkwak on 2023/02/21.
// Copyright Β© 2023 yongbeomkwak. All rights reserved.
//

import Foundation

public extension Notification.Name {
Expand All @@ -18,6 +10,5 @@ public extension Notification.Name {
static let hideSongCart = Notification.Name("hideSongCart")
static let movedTab = Notification.Name("movedTab")
static let movedStorageFavoriteTab = Notification.Name("movedStorageFavoriteTab")
static let selectedSongOnSearch = Notification.Name("selectedSongOnSearch")
static let updateCurrentSongLikeState = Notification.Name("updateCurrentSongLikeState")
}
Loading