Skip to content

Commit

Permalink
feat: adding grouping to selections
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Jul 26, 2024
1 parent da74168 commit b151c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fire_atlas_editor/lib/services/storage/desktop.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ class FireAtlasStorage extends FireAtlasStorageApi {

@override
Future<String> selectNewProjectPath(FireAtlas atlas) async {
final file = await getSavePath(suggestedName: '${atlas.id}.fa');
final file = await getSaveLocation(suggestedName: '${atlas.id}.fa');
if (file == null) {
throw 'Nothing selected';
}
return file;
return file.path;
}

@override
Expand Down

0 comments on commit b151c6f

Please sign in to comment.