mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 20:54:33 +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(
|
||||
height: 12,
|
||||
),
|
||||
if (coin != Coin.epicCash || coin != Coin.ethereum)
|
||||
if (coin != Coin.epicCash && coin != Coin.ethereum)
|
||||
TextButton(
|
||||
onPressed: generateNewAddress,
|
||||
style: Theme.of(context)
|
||||
|
|
Loading…
Reference in a new issue