diff --git a/BMDJ.xcodeproj/project.pbxproj b/BMDJ.xcodeproj/project.pbxproj index 4206619..a55560a 100644 --- a/BMDJ.xcodeproj/project.pbxproj +++ b/BMDJ.xcodeproj/project.pbxproj @@ -889,7 +889,7 @@ "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)", "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)", ); - MARKETING_VERSION = 1.0.3; + MARKETING_VERSION = 1.0.4; OTHER_LDFLAGS = "-ObjC"; PRODUCT_BUNDLE_IDENTIFIER = com.kakaotocs.danji; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -915,7 +915,7 @@ "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)", "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)", ); - MARKETING_VERSION = 1.0.3; + MARKETING_VERSION = 1.0.4; OTHER_LDFLAGS = "-ObjC"; PRODUCT_BUNDLE_IDENTIFIER = com.kakaotocs.danji; PRODUCT_NAME = "$(TARGET_NAME)"; diff --git a/BMDJ/Reactor/HomeViewReactor.swift b/BMDJ/Reactor/HomeViewReactor.swift index 58f9ab1..be9bc40 100644 --- a/BMDJ/Reactor/HomeViewReactor.swift +++ b/BMDJ/Reactor/HomeViewReactor.swift @@ -262,7 +262,7 @@ final class HomeViewReactor: Reactor { func reactorForMenu() -> MenuViewReactor { var danjis: [Danji] = [] if let danjiReactors = currentState.danjiSections.first?.items { - danjis = danjiReactors.map { $0.currentState } + danjis = danjiReactors.map { $0.currentState }.filter { $0.color != .gray } } return MenuViewReactor(provider: provider, danjis: danjis, activeDanji: currentState.activeDanji) }