Skip to content

Commit

Permalink
feat: 자기소개 작성 안한 사용자 호감 화면 안보이게 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leemhyungyu committed Nov 11, 2024
1 parent 850aa8d commit 3fded2b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Projects/Feature/Sources/TabView/MainTabViewFeature.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,12 @@ public struct MainTabViewFeature {
return .none
case .sandBeachButtonDidTapped:
state.selectedTab = .sandBeach
return .send(.sandBeachRoot(.sandBeach(.newBottleIslandDidTapped)))

if state.sandBeachRoot.sandBeach.userState == .noIntroduction {
return .none
} else {
return .send(.sandBeachRoot(.sandBeach(.newBottleIslandDidTapped)))
}
}

// MyPage Delegate
Expand Down

0 comments on commit 3fded2b

Please sign in to comment.