storkit: merge 449_bug_oauth_callback_url_ignores_port_cli_flag

This commit is contained in:
dave
2026-03-31 14:52:18 +00:00
parent dc4bac3a85
commit 57e0197d75
7 changed files with 44 additions and 8 deletions
+5 -1
View File
@@ -168,7 +168,11 @@ interface ChatProps {
oauthStatus?: OAuthStatus | null;
}
export function Chat({ projectPath, onCloseProject, oauthStatus = null }: ChatProps) {
export function Chat({
projectPath,
onCloseProject,
oauthStatus = null,
}: ChatProps) {
const { messages, setMessages, clearMessages } = useChatHistory(projectPath);
const [loading, setLoading] = useState(false);
const [model, setModel] = useState("claude-code-pty");