Skip to content

Commit

Permalink
fix(app) test
Browse files Browse the repository at this point in the history
  • Loading branch information
helderbetiol committed Aug 8, 2024
1 parent 7344e89 commit 8934e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion APP/lib/models/project.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Project {
List<String>.from((map['objects'])),
List<String>.from((map['permissions'])),
id: map['Id'].toString(),
isImpact: map['isImpact'] as bool,
isImpact: map['isImpact'] is bool ? map['isImpact'] as bool : false,
);
}

Expand Down

0 comments on commit 8934e6a

Please sign in to comment.