diff --git a/internal/cmd/refinery.go b/internal/cmd/refinery.go index dca7600a..70ab240f 100644 --- a/internal/cmd/refinery.go +++ b/internal/cmd/refinery.go @@ -380,6 +380,6 @@ func runRefineryAttach(cmd *cobra.Command, args []string) error { fmt.Printf("%s Refinery started\n", style.Bold.Render("✓")) } - // Attach to the session - return t.AttachSession(sessionID) + // Attach to session using exec to properly forward TTY + return attachToTmuxSession(sessionID) }