Name changes

This commit is contained in:
Juan Gilsanz Polo
2024-02-24 01:13:16 +01:00
parent a2d621ba9b
commit 78d793f37d
14 changed files with 36 additions and 38 deletions

View File

@@ -10,7 +10,7 @@ part 'links.provider.g.dart';
@riverpod
FutureOr<ApiResponse<Bookmarks>> linksRequest(LinksRequestRef ref) async {
final result = await ref.watch(apiClientProviderProvider)!.fetchBookmarks();
final result = await ref.watch(apiClientProvider)!.fetchBookmarks();
return result;
}