summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-06-27 14:35:32 -0400
committerJay V <[email protected]>2025-06-27 19:10:42 -0400
commit0676bcd4fd33b6acb37e248be53b9e6a0352be6b (patch)
treed93c773ce109dd1adb9475c67caf759136cbb830
parentd076def561d10167d984a4ef071e847d10bd8981 (diff)
downloadopencode-0676bcd4fd33b6acb37e248be53b9e6a0352be6b.tar.gz
opencode-0676bcd4fd33b6acb37e248be53b9e6a0352be6b.zip
temporary patch for input lag on initial run
-rw-r--r--packages/opencode/src/cli/cmd/tui.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/opencode/src/cli/cmd/tui.ts b/packages/opencode/src/cli/cmd/tui.ts
index 203cc2998..b66aca6bd 100644
--- a/packages/opencode/src/cli/cmd/tui.ts
+++ b/packages/opencode/src/cli/cmd/tui.ts
@@ -102,6 +102,9 @@ export const TuiCommand = cmd({
UI.println(UI.logo(" "))
UI.empty()
await AuthLoginCommand.handler(args)
+ UI.empty()
+ UI.println("Provider configured - please run again")
+ return
}
}
},