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

This commit is contained in:
ggurdin 2025-09-10 13:23:16 -04:00 committed by GitHub
parent 5cc19833d3
commit c24e0db30f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}