mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +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,
|
onPressed: () => _fuseAgain,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (!_succeeded! && !_failed!) const Spacer(),
|
if (!_succeeded && !_failed) const Spacer(),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 16,
|
height: 16,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue