lelantus scan option fix

This commit is contained in:
julian 2024-07-03 16:34:57 -06:00
parent f0b62aed92
commit 830a7ab24f

View file

@ -405,6 +405,7 @@ class _RestoreOptionsViewState extends ConsumerState<RestoreOptionsView> {
color: Colors.transparent, color: Colors.transparent,
child: Column( child: Column(
children: [ children: [
if (coin is Firo)
CheckboxTextButton( CheckboxTextButton(
label: "Scan for Lelantus transactions", label: "Scan for Lelantus transactions",
onChanged: (newValue) { onChanged: (newValue) {
@ -413,6 +414,7 @@ class _RestoreOptionsViewState extends ConsumerState<RestoreOptionsView> {
}); });
}, },
), ),
if (coin is Firo)
const SizedBox( const SizedBox(
height: 8, height: 8,
), ),