refactor: Clean up unused variables and comments in AppProvider and DeviceConfigScreen

This commit is contained in:
Janez T
2025-10-22 12:02:44 +02:00
parent 53ed690f51
commit 0092bad3bf
5 changed files with 9 additions and 70 deletions

View File

@@ -186,8 +186,8 @@ class AppProvider with ChangeNotifier {
final contact = contactsProvider
.findContactByKey(message.senderPublicKeyPrefix!);
if (contact != null) {
final updatedMessage = message.copyWith(senderName: contact.advName);
// Note: You might want to update the message in the list
// Note: Message sender name could be updated here if needed
// final updatedMessage = message.copyWith(senderName: contact.advName);
}
}
};