diff --git a/mobile/lib/ui/viewer/people/person_cluster_suggestion.dart b/mobile/lib/ui/viewer/people/person_cluster_suggestion.dart index b350243b27..5b762ba5d7 100644 --- a/mobile/lib/ui/viewer/people/person_cluster_suggestion.dart +++ b/mobile/lib/ui/viewer/people/person_cluster_suggestion.dart @@ -65,7 +65,7 @@ class _PersonClustersState extends State { final currentSuggestion = snapshot.data![currentSuggestionIndex]; final int clusterID = currentSuggestion.$1; final double distance = currentSuggestion.$2; - final bool isMean = currentSuggestion.$3; + final bool usingMean = currentSuggestion.$3; final List files = currentSuggestion.$4; return InkWell( onTap: () { @@ -87,7 +87,7 @@ class _PersonClustersState extends State { child: _buildSuggestionView( clusterID, distance, - isMean, + usingMean, files, numberOfDifferentSuggestions, ), @@ -147,7 +147,7 @@ class _PersonClustersState extends State { Widget _buildSuggestionView( int clusterID, double distance, - bool isMean, + bool usingMean, List files, int numberOfSuggestions, ) { @@ -156,7 +156,7 @@ class _PersonClustersState extends State { children: [ if (kDebugMode) Text( - "Debug: Cluster ID: $clusterID, Distance: ${distance.toStringAsFixed(3)}, IsMean: $isMean", + "ClusterID: $clusterID, Distance: ${distance.toStringAsFixed(3)}, usingMean: $usingMean", style: getEnteTextTheme(context).smallMuted, ), Text(