Skip to content

Commit

Permalink
feat(tapmatch): hidden logo
Browse files Browse the repository at this point in the history
  • Loading branch information
tomokisun committed Dec 25, 2024
1 parent 7297e12 commit 79f9eec
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 43 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ public struct DirectMessageTabView: View {
.navigationBarTitleDisplayMode(.inline)
.task { await store.send(.onTask).finish() }
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
ToolbarItem(placement: .topBarTrailing) {
Button {
store.send(.settingsButtonTapped)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ public struct DisplayNameSettingView: View {
.onAppear {
isFocused = true
}
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
.alert($store.scope(state: \.alert, action: \.alert))
}
}
5 changes: 0 additions & 5 deletions Packages/TapMatch/Sources/ExplorerFeature/Explorer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ public struct ExplorerView: View {
}
.navigationBarTitleDisplayMode(.inline)
.task { await store.send(.onTask).finish() }
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@ public struct GenderSettingView: View {
.multilineTextAlignment(.center)
.navigationBarTitleDisplayMode(.inline)
.task { await store.send(.onTask).finish() }
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
}
}

Expand Down
5 changes: 0 additions & 5 deletions Packages/TapMatch/Sources/HowToMovieFeature/HowToMovie.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ public struct HowToMovieView: View {
.multilineTextAlignment(.center)
.navigationBarTitleDisplayMode(.inline)
.task { await store.send(.onTask).finish() }
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
}
}

Expand Down
5 changes: 0 additions & 5 deletions Packages/TapMatch/Sources/InvitationFeature/Invitation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ public struct InvitationView: View {
.onAppear {
isFocused = true
}
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,6 @@ public struct ProfilePictureSettingView: View {
.multilineTextAlignment(.center)
.navigationBarTitleDisplayMode(.inline)
.task { await store.send(.onTask).finish() }
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
.alert(
$store.scope(
state: \.destination?.alert,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,5 @@ public struct RecommendationView: View {
}
.task { await store.send(.onTask).finish() }
.navigationBarTitleDisplayMode(.inline)
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ public struct UsernameSettingView: View {
.onAppear {
isFocused = true
}
.toolbar {
ToolbarItem(placement: .principal) {
Image(ImageResource.logo)
}
}
.alert($store.scope(state: \.destination?.alert, action: \.destination.alert))
}
}
Expand Down

0 comments on commit 79f9eec

Please sign in to comment.