Add trailing comma to make formatting less disturbing

This commit is contained in:
krawieck 2020-09-15 23:52:15 +02:00
parent e977305a0e
commit 288aa52a66
1 changed files with 8 additions and 7 deletions

View File

@ -558,13 +558,14 @@ class _FollowButton extends HookWidget {
// ignore: avoid_catches_without_on_clauses
} catch (e) {
Scaffold.of(context).showSnackBar(SnackBar(
content: Row(
children: [
Icon(Icons.warning),
SizedBox(width: 10),
Text("couldn't ${isSubbed.value ? 'un' : ''}sub :<"),
],
)));
content: Row(
children: [
Icon(Icons.warning),
SizedBox(width: 10),
Text("couldn't ${isSubbed.value ? 'un' : ''}sub :<"),
],
),
));
}
// clean up