mirror of
https://github.com/git-touch/git-touch
synced 2025-03-02 18:27:52 +01:00
chore: fix typo
This commit is contained in:
parent
5a5b20eb7e
commit
fddf67d518
@ -179,7 +179,7 @@ final router = GoRouter(
|
||||
GoRoute(
|
||||
path: 'watchers',
|
||||
builder: (context, state) =>
|
||||
GhWachers(state.params['owner']!, state.params['name']!),
|
||||
GhWatchers(state.params['owner']!, state.params['name']!),
|
||||
),
|
||||
GoRoute(
|
||||
path: 'contributors',
|
||||
|
@ -123,15 +123,15 @@ class GhMembers extends StatelessWidget {
|
||||
}
|
||||
}
|
||||
|
||||
class GhWachers extends StatelessWidget {
|
||||
const GhWachers(this.owner, this.name);
|
||||
class GhWatchers extends StatelessWidget {
|
||||
const GhWatchers(this.owner, this.name);
|
||||
final String owner;
|
||||
final String name;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return ListStatefulScaffold<GUserParts, String?>(
|
||||
title: const AppBarTitle('Wachers'),
|
||||
title: const AppBarTitle('Watchers'),
|
||||
fetch: (cursor) async {
|
||||
final auth = context.read<AuthModel>();
|
||||
final req = GWatchersReq((b) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user