diff --git a/b0esche_cloud/lib/widgets/account_settings_dialog.dart b/b0esche_cloud/lib/widgets/account_settings_dialog.dart index 5aaa45f..a862f1c 100644 --- a/b0esche_cloud/lib/widgets/account_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/account_settings_dialog.dart @@ -620,10 +620,12 @@ class _AccountSettingsDialogState extends State { ), const SizedBox(height: 24), + // Save Button + Center( child: SizedBox( width: 144, child: ModernGlassButton( - onPressed: _isLoading ? null : _updateProfile, + onPressed: _isLoading ? () {} : () => _updateProfile(), isLoading: _isLoading, child: _isLoading ? const SizedBox( @@ -639,6 +641,7 @@ class _AccountSettingsDialogState extends State { : const Text('Save Changes'), ), ), + ), const SizedBox(height: 2), // Space for logout button ], ),