Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 8269b69

Browse files
bors[bot]holzeis
andauthored
Merge #506
506: fix: Show open channel card while initialising r=holzeis a=holzeis Co-authored-by: Richard Holzeis <richard@holzeis.me>
2 parents 557b2aa + cf96cf7 commit 8269b69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/wallet/wallet_dashboard.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class _WalletDashboardState extends State<WalletDashboard> {
6464
icon: const Icon(Icons.link))));
6565
}
6666

67-
if (bitcoinBalance.total().asSats > 0 && !(channel.isAvailable() || channel.isInitialising())) {
67+
if ((bitcoinBalance.total().asSats > 0 && !channel.isAvailable()) || channel.isInitialising()) {
6868
widgets.add(ActionCard(CardDetails(
6969
route: OpenChannel.route,
7070
title: "Open Channel",

0 commit comments

Comments
 (0)