diff --git a/client/lib/features/gallery/services/gallery_service.dart b/client/lib/features/gallery/services/gallery_service.dart index c372c01..f63fec7 100644 --- a/client/lib/features/gallery/services/gallery_service.dart +++ b/client/lib/features/gallery/services/gallery_service.dart @@ -24,8 +24,7 @@ class GalleryService { } Future uploadPhoto(String geoSphereId, File photo) async { - - var uri = Uri.parse('${EnvVariables.uri}/geofences'), + var uri = Uri.parse('${EnvVariables.uri}/geofences'); var request = http.MultipartRequest('POST', uri) ..files.add(await http.MultipartFile.fromPath('photo', photo.path));