update: tuiからspawnする際にエラー詳細が落ちていた問題を修正

This commit is contained in:
2026-05-03 21:47:54 +09:00
parent 25d07976f2
commit b22b226fea
5 changed files with 159 additions and 108 deletions
-2
View File
@@ -53,7 +53,6 @@ pub struct App {
pub current_tool: Option<String>,
pub input: InputBuffer,
pub quit: bool,
pub shutdown_confirm: Option<std::time::Instant>,
/// 2-tap guard for `Ctrl-C` when the Pod is not running. First press
/// records the instant; a second press within the timeout exits the
/// TUI (the Pod itself stays alive).
@@ -86,7 +85,6 @@ impl App {
current_tool: None,
input: InputBuffer::new(),
quit: false,
shutdown_confirm: None,
quit_confirm: None,
blocks: Vec::new(),
scroll: Scroll::default(),