1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-17 15:47:54 +02:00

fix(mobile): Share page URL (#17834)

* Update share_intent.page.dart

* Update share_intent.page.dart

* unused stores

* remove unused duplicate function
This commit is contained in:
Matthew Momjian
2025-05-04 09:58:45 -04:00
committed by GitHub
parent 8801ae5821
commit ab95881ebb
2 changed files with 2 additions and 8 deletions

View File

@ -185,11 +185,6 @@ class AuthNotifier extends StateNotifier<AuthState> {
return Store.tryGet(StoreKey.serverEndpoint);
}
/// Returns the current server URL (input by the user) from the store
String? getServerUrl() {
return Store.tryGet(StoreKey.serverUrl);
}
Future<String?> setOpenApiServiceEndpoint() {
return _authService.setOpenApiServiceEndpoint();
}