Skip to content

Commit

Permalink
Fixed semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
oltimaloku committed Feb 2, 2024
1 parent 7070f52 commit 3c11c35
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/lib/features/gallery/services/gallery_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ class GalleryService {
}

Future<void> 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));
Expand Down

0 comments on commit 3c11c35

Please sign in to comment.