We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c92e81 commit 1ed614dCopy full SHA for 1ed614d
1 file changed
Core/Sources/SuggestionService/SuggestionService.swift
@@ -34,7 +34,7 @@ public final class SuggestionService: SuggestionServiceType {
34
35
func createGitHubCopilotServiceIfNeeded() throws -> GitHubCopilotSuggestionServiceType {
36
if let gitHubCopilotService { return gitHubCopilotService }
37
- let newService = try GitHubCopilotSuggestionService()
+ let newService = try GitHubCopilotSuggestionService(projectRootURL: projectRootURL)
38
gitHubCopilotService = newService
39
Task {
40
try await Task.sleep(nanoseconds: 1_000_000_000)
0 commit comments