removed logs

This commit is contained in:
hannathkadher
2025-01-22 17:22:58 +04:00
parent ba7db3a5fb
commit 830725254f
3 changed files with 1 additions and 6 deletions

View File

@ -408,9 +408,7 @@ class SpaceManagementBloc
Future<List<SpaceModel>> saveSpacesHierarchically(
List<SpaceModel> spaces, String communityUuid) async {
print("space");
final orderedSpaces = flattenHierarchy(spaces);
print("parent");
final parentsToDelete = orderedSpaces.where((space) =>
space.status == SpaceStatus.deleted &&

View File

@ -463,9 +463,7 @@ class _CommunityStructureAreaState extends State<CommunityStructureArea> {
_markChildrenAsDeleted(space);
}
}
for (var space in spaces) {
print("space ${space.name} and ${space.status}");
}
_removeConnectionsForDeletedSpaces();
});
}

View File

@ -37,7 +37,6 @@ class SpaceModelManagementApi {
Future<String?> updateSpaceModel(
CreateSpaceTemplateBodyModel spaceModel, String spaceModelUuid) async {
print(spaceModel.toJson().toString());
final response = await HTTPService().put(
path: ApiEndpoints.updateSpaceModel
.replaceAll('{projectId}', TempConst.projectId).replaceAll('{spaceModelUuid}', spaceModelUuid),