chore(mobile): upgrade riverpod (#16742)

This commit is contained in:
Alex 2025-03-09 20:30:58 -05:00 committed by GitHub
parent 17c5094719
commit 82624b0979
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 157 additions and 96 deletions

View file

@ -1,3 +1,4 @@
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:immich_mobile/services/map.service.dart';
import 'package:immich_mobile/providers/api.provider.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
@ -5,5 +6,4 @@ import 'package:riverpod_annotation/riverpod_annotation.dart';
part 'map_service.provider.g.dart';
@riverpod
MapSerivce mapService(MapServiceRef ref) =>
MapSerivce(ref.watch(apiServiceProvider));
MapSerivce mapService(Ref ref) => MapSerivce(ref.watch(apiServiceProvider));