mobile button height fix

This commit is contained in:
julian 2022-11-19 11:32:18 -06:00
parent 601001f96d
commit 90dc9e3116

View file

@ -349,7 +349,7 @@ class _NodeDetailsViewState extends ConsumerState<NodeDetailsView> {
Expanded(
child: SecondaryButton(
label: "Test connection",
buttonHeight: ButtonHeight.l,
buttonHeight: isDesktop ? ButtonHeight.l : null,
onPressed: () async {
await _testConnection(ref, context);
},