rename CreateGroupView to GroupDetailView for clarity and consistency
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 2m3s
Pull Request Pipeline / lint (pull_request) Successful in 2m4s

This commit is contained in:
2026-01-10 22:11:28 +01:00
parent 525acec1d3
commit b6dd0541ae
2 changed files with 7 additions and 7 deletions

View File

@@ -78,7 +78,7 @@ class _GroupsViewState extends State<GroupsView> {
context,
adaptivePageRoute(
builder: (context) {
return CreateGroupView(groupToEdit: groups[index]);
return GroupDetailView(groupToEdit: groups[index]);
},
),
);
@@ -100,7 +100,7 @@ class _GroupsViewState extends State<GroupsView> {
context,
adaptivePageRoute(
builder: (context) {
return const CreateGroupView();
return const GroupDetailView();
},
),
);