fix: don't show join message when user dismisses activity role goal message (#3932)

pull/2245/head
ggurdin 2 months ago committed by GitHub
parent 5cc19833d3
commit c24e0db30f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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…
Cancel
Save