From d6ecf872550ba7b68774c9c9971cfd4ef89860d5 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Mon, 17 Jan 2022 12:29:13 -0800 Subject: [PATCH] PR Fixups --- lib/model.dart | 2 +- lib/views/peersettingsview.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/model.dart b/lib/model.dart index 923f0f46..00ebba2e 100644 --- a/lib/model.dart +++ b/lib/model.dart @@ -603,7 +603,7 @@ class ContactInfoState extends ChangeNotifier { String? get acnCircuit => this._acnCircuit; set acnCircuit(String? acnCircuit) { this._acnCircuit = acnCircuit; - notifyListeners() + notifyListeners(); } // Indicated whether the conversation is archived, in which case it will diff --git a/lib/views/peersettingsview.dart b/lib/views/peersettingsview.dart index 96f15567..6606312d 100644 --- a/lib/views/peersettingsview.dart +++ b/lib/views/peersettingsview.dart @@ -62,7 +62,7 @@ class _PeerSettingsViewState extends State { return RichText( textAlign: TextAlign.left, text: TextSpan( - text: "$country", + text: country, style: TextStyle(fontWeight: FontWeight.bold, fontSize: 10, fontFamily: "monospace"), children: [TextSpan(text: " ($ip)", style: TextStyle(fontSize: 8, fontWeight: FontWeight.normal))])); }).toList(growable: true);