mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
logic fix
This commit is contained in:
parent
5ba44d5b8e
commit
1814fb3752
1 changed files with 2 additions and 2 deletions
|
@ -288,11 +288,11 @@ class _ReceiveViewState extends ConsumerState<ReceiveView> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (coin != Coin.epicCash || coin != Coin.ethereum)
|
if (coin != Coin.epicCash && coin != Coin.ethereum)
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
if (coin != Coin.epicCash || coin != Coin.ethereum)
|
if (coin != Coin.epicCash && coin != Coin.ethereum)
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: generateNewAddress,
|
onPressed: generateNewAddress,
|
||||||
style: Theme.of(context)
|
style: Theme.of(context)
|
||||||
|
|
Loading…
Reference in a new issue