PR Fixups
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2022-01-17 12:29:13 -08:00
parent ae6f0dd456
commit d6ecf87255
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -62,7 +62,7 @@ class _PeerSettingsViewState extends State<PeerSettingsView> {
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);