Skip to content

Commit

Permalink
[Fix] Layer 구조 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Jin0331 committed Feb 1, 2025
1 parent eb9db1b commit f8f79bc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ struct MainCoordinatorView: View {

var body: some View {
WithPerceptionTracking {
ZStack {
TabView(selection: $store.selectedTab.sending(\.tabSelected)) {
StudyMapCoordinatorView(store: store.scope(state: \.studyMap, action: \.studyMap))
.tabItem {
Expand All @@ -35,8 +34,6 @@ struct MainCoordinatorView: View {
Text("마이")
}
.tag(MainCoordinator.Tab.myPage)
}
.zIndex(0)
}
.onAppear {
Logger.debug("MainCoordinator OnAppear")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ struct RootCoordinatorView: View {

var body: some View {
WithPerceptionTracking {
ZStack {
VStack {
// if store.memberSession.isLoggedIn {
if true {
MainCoordinatorView(store: store.scope(state: \.main, action: \.main))
Expand Down

0 comments on commit f8f79bc

Please sign in to comment.