fix(tui): inject reminder after moving session (#31027)

This commit is contained in:
James Long
2026-06-05 17:33:50 -04:00
committed by GitHub
parent bc3e8ff1e8
commit dbd16997f8
2 changed files with 30 additions and 11 deletions
@@ -31,5 +31,7 @@ function message(error: MoveSession.Error) {
if (error instanceof SessionV2.NotFoundError) return `Session not found: ${error.sessionID}`
if (error instanceof MoveSession.DestinationProjectMismatchError)
return "Destination directory belongs to another project"
if (error instanceof MoveSession.ApplyChangesError)
return `Unable to apply your changes in the destination directory. The files may conflict with existing changes.`
return error.message
}