Skip to content

Commit

Permalink
Merge pull request #11 from KakaoTocs/develop_1.0.4
Browse files Browse the repository at this point in the history
Develop 1.0.4
  • Loading branch information
KakaoTocs authored Aug 23, 2021
2 parents 422e089 + 979ddb9 commit 57fdd45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions BMDJ.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand All @@ -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)";
Expand Down
2 changes: 1 addition & 1 deletion BMDJ/Reactor/HomeViewReactor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 57fdd45

Please sign in to comment.