fix(ui): Remove Expanded wrapper for SSH disabled warning

- Resolves: #568
This commit is contained in:
NaiJi 2024-09-03 00:41:08 +04:00 committed by Inex Code
parent d6cc90354f
commit 6432dd98a6

View file

@ -260,11 +260,9 @@ class _SshKeysCard extends StatelessWidget {
const Divider(height: 0), const Divider(height: 0),
Padding( Padding(
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
child: Expanded( child: InfoBox(
child: InfoBox( text: 'ssh.ssh_disabled_warning'.tr(),
text: 'ssh.ssh_disabled_warning'.tr(), isWarning: true,
isWarning: true,
),
), ),
), ),
], ],