Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bematch): remove profile edit username #1108

Merged
merged 1 commit into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -197,23 +197,7 @@
}
}
}
},
"Username on BeReal." : {
"localizations" : {
"fr" : {
"stringUnit" : {
"state" : "translated",
"value" : "Nom d'utilisateur sur BeReal."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
"value" : "BeRealのユーザーネーム"
}
}
}
}
},
"version" : "1.0"
}
}
14 changes: 0 additions & 14 deletions Packages/BeMatch/Sources/ProfileEditFeature/ProfileEdit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,6 @@ public struct ProfileEditView: View {
public var body: some View {
List {
Section {
Button {
store.send(.usernameSettingButtonTapped)
} label: {
LabeledContent {
Image(systemName: "chevron.right")
} label: {
Text("Username on BeReal.", bundle: .module)
.foregroundStyle(Color.primary)
}
}
.navigationDestination(store: store.scope(state: \.$destination.usernameSetting, action: \.destination.usernameSetting)) { store in
UsernameSettingView(store: store, nextButtonStyle: .save)
}

Button {
store.send(.displayNameSettingButtonTapped)
} label: {
Expand Down