Fix missing api proposal check (#325094)

* Fix missing api proposal check

* Missing proposal
This commit is contained in:
Alex Ross
2026-07-09 09:19:51 +00:00
committed by GitHub
parent ea2dfb6d3f
commit 0a9cfc4e0f
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -18,6 +18,7 @@
"defaultChatParticipant",
"diffCommand",
"documentFiltersExclusive",
"documentSyntaxHighlighting",
"editorInsets",
"embeddings",
"envIsConnectionMetered",
@@ -324,7 +324,7 @@ export function isProposedApiEnabled(extension: IExtensionDescription, proposal:
if (!extension.enabledApiProposals) {
return false;
}
return true;// extension.enabledApiProposals.includes(proposal);
return extension.enabledApiProposals.includes(proposal);
}
export function checkProposedApiEnabled(extension: IExtensionDescription, proposal: ApiProposalName): void {