Skip to content

Commit

Permalink
feat(bematch): remove profile edit username (#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomokisun authored Sep 15, 2024
1 parent 2966fa3 commit 000288d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
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

0 comments on commit 000288d

Please sign in to comment.