From c24e0db30fffacb1a49393ab91670a41c2aab563 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Wed, 10 Sep 2025 13:23:16 -0400 Subject: [PATCH] fix: don't show join message when user dismisses activity role goal message (#3932) --- lib/pangea/activity_sessions/activity_role_model.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/pangea/activity_sessions/activity_role_model.dart b/lib/pangea/activity_sessions/activity_role_model.dart index 52edb1c73..1e862068b 100644 --- a/lib/pangea/activity_sessions/activity_role_model.dart +++ b/lib/pangea/activity_sessions/activity_role_model.dart @@ -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; }