Skip to content

Commit

Permalink
Autocomplete: fix fast-path feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
valerybugakov committed Oct 25, 2024
1 parent 54604f5 commit 3a7a412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/src/completions/providers/fireworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class FireworksProvider extends Provider {
this.disposables.push(
subscriptionDisposable(
featureFlagProvider
.evaluatedFeatureFlag(FeatureFlag.CodyAutocompleteTracing)
.evaluatedFeatureFlag(FeatureFlag.CodyAutocompleteFastPath)
.subscribe(isFastPathEnabled => {
this.isFastPathEnabled = Boolean(isFastPathEnabled)
})
Expand Down

0 comments on commit 3a7a412

Please sign in to comment.