Skip to content

Commit 8fea60a

Browse files
committed
Fix auth provider url position
1 parent af2f668 commit 8fea60a

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Tool/Sources/GitHubCopilotService/GitHubCopilotRequest.swift

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,7 @@ enum GitHubCopilotRequest {
123123
var dict: [String: JSONValue] = [:]
124124
let enterpriseURI = UserDefaults.shared.value(for: \.gitHubCopilotEnterpriseURI)
125125
if !enterpriseURI.isEmpty {
126-
dict["github-enterprise"] = .hash([
127-
"url": .string(enterpriseURI),
128-
])
126+
dict["url"] = .string(enterpriseURI)
129127
}
130128

131129
if dict.isEmpty { return nil }

0 commit comments

Comments
 (0)