Skip to content

Commit

Permalink
chore: fix error test
Browse files Browse the repository at this point in the history
  • Loading branch information
chopper985 committed Sep 16, 2024
1 parent 426dc63 commit 68a2efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/types/models/participant_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Participant extends Equatable {
int get hashCode => id.hashCode ^ user.hashCode ^ isMe.hashCode;

@override
List<Object> get props {
return [id, isMe];
List<dynamic> get props {
return [id, user, isMe];
}
}

0 comments on commit 68a2efd

Please sign in to comment.