mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
use longer variable name to satisfy linter
This commit is contained in:
parent
a166dc0d58
commit
92fe2c5e33
1 changed files with 2 additions and 2 deletions
|
|
@ -154,9 +154,9 @@ struct GroupsView: View {
|
|||
if viewModel.recommendationGroups.count > 0 {
|
||||
Section(header: Text(LocalText.clubsYours)) {
|
||||
ForEach(viewModel.recommendationGroups) { recommendationGroup in
|
||||
let vm = RecommendationsGroupViewModel(recommendationGroup: recommendationGroup)
|
||||
let viewModel = RecommendationsGroupViewModel(recommendationGroup: recommendationGroup)
|
||||
NavigationLink(
|
||||
destination: RecommendationGroupView(viewModel: vm)
|
||||
destination: RecommendationGroupView(viewModel: viewModel)
|
||||
) {
|
||||
Text(recommendationGroup.name)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue