Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ubbabeck committed Oct 17, 2023
1 parent 5ce059b commit a709ac2
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,12 @@ class _TxLink extends StatelessWidget {

const _TxLink({required this.txid});

Future<Config> _fetchConfig() async {
return Config.instance();
}

@override
Widget build(BuildContext context) {
final text = context.texts();

return FutureBuilder(
future: _fetchConfig(),
future: Config.instance(),
builder: (context, snapshot) {
if (snapshot.connectionState != ConnectionState.done) {
return const Loader();
Expand Down

0 comments on commit a709ac2

Please sign in to comment.