fix(centralui): MoveDataConnectionDialog surfaces MoveAsync exceptions inline instead of failing silently (T33b review)

This commit is contained in:
Joseph Doherty
2026-06-18 20:06:06 -04:00
parent 07b651d933
commit 4d3cef18cb
@@ -75,6 +75,10 @@ else
_error = result.Error ?? "Move failed."; _error = result.Error ?? "Move failed.";
} }
} }
catch (Exception ex)
{
_error = $"Move failed: {ex.Message}";
}
finally finally
{ {
_busy = false; _busy = false;