mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
remove null assertions
This commit is contained in:
parent
db9dfd2e5b
commit
dd2926095b
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ class _FusionProgressViewState extends ConsumerState<FusionProgressView> {
|
|||
onPressed: () => _fuseAgain,
|
||||
),
|
||||
),
|
||||
if (!_succeeded! && !_failed!) const Spacer(),
|
||||
if (!_succeeded && !_failed) const Spacer(),
|
||||
const SizedBox(
|
||||
height: 16,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue