Merge pull request #9927 from Kilo-Org/mark/reset-to-upstream-round1

chore(upstream): drop stale kilocode_change markers + minor cosmetic drift
This commit is contained in:
Mark IJbema
2026-05-05 17:26:18 +02:00
committed by GitHub
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { RequestError, type McpServer } from "@agentclientprotocol/sdk"
import type { ACPSessionState } from "./types"
import type { KiloClient } from "@kilocode/sdk/v2"
import * as Log from "@opencode-ai/core/util/log"
import type { KiloClient } from "@kilocode/sdk/v2"
const log = Log.create({ service: "acp-session-manager" })
@@ -169,7 +169,9 @@ export function DialogProvider(props: ParentProps) {
evt.preventDefault()
evt.stopPropagation()
}}
onMouseUp={!Flag.KILO_EXPERIMENTAL_DISABLE_COPY_ON_SELECT ? () => Selection.copy(renderer, toast) : undefined}
onMouseUp={
!Flag.KILO_EXPERIMENTAL_DISABLE_COPY_ON_SELECT ? () => Selection.copy(renderer, toast) : undefined
}
>
<Show when={value.stack.length}>
<Dialog onClose={() => value.clear()} size={value.size}>
+2 -2
View File
@@ -44,8 +44,8 @@ export class McpOAuthProvider implements OAuthClientProvider {
get clientMetadata(): OAuthClientMetadata {
return {
redirect_uris: [this.redirectUrl],
client_name: "Kilo", // kilocode_change
client_uri: "https://kilo.ai", // kilocode_change
client_name: "Kilo",
client_uri: "https://kilo.ai",
grant_types: ["authorization_code", "refresh_token"],
response_types: ["code"],
token_endpoint_auth_method: this.config.clientSecret ? "client_secret_post" : "none",