From 8aed14ace6ce58ca5adf38e911227588f666d8a0 Mon Sep 17 00:00:00 2001 From: laurenspriem Date: Fri, 29 Mar 2024 17:33:29 +0530 Subject: [PATCH] [mob] Change text --- .../lib/ui/viewer/people/person_cluster_suggestion.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(