+ {terminals.length === 0 && (
+
+ No terminals detected
+
+ )}
+ {terminals.map((t) => {
+ // preferredTerminal is either a terminal name ("Ghostty") or a full path
+ const isSelected = preferredTerminal === t.name || preferredTerminal === t.path
+ return (
+
+ )
+ })}
+
+
+
+