fix: don't show join message when user dismisses activity role goal message (#3932)
This commit is contained in:
parent
5cc19833d3
commit
c24e0db30f
1 changed files with 2 additions and 4 deletions
|
|
@ -71,8 +71,7 @@ class ActivityRoleModel {
|
|||
other.role == role &&
|
||||
other.finishedAt == finishedAt &&
|
||||
other.archivedAt == archivedAt &&
|
||||
other.id == id &&
|
||||
other.dismissedGoalTooltip == dismissedGoalTooltip;
|
||||
other.id == id;
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
@ -81,6 +80,5 @@ class ActivityRoleModel {
|
|||
role.hashCode ^
|
||||
(finishedAt?.hashCode ?? 0) ^
|
||||
(archivedAt?.hashCode ?? 0) ^
|
||||
id.hashCode ^
|
||||
dismissedGoalTooltip.hashCode;
|
||||
id.hashCode;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue