Skip to content

Commit 9e27ded

Browse files
authored
Expose init prompt without mcpalpha experiment (#9178)
* Expose init prompt without mcpalpha experiment * Remove import
1 parent 1823d51 commit 9e27ded

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/mcp/prompts/core/index.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { init } from "./init";
22
import { deploy } from "./deploy";
3-
import { isEnabled } from "../../../experiments";
43

5-
const corePrompts = [deploy];
6-
if (isEnabled("mcpalpha")) {
7-
corePrompts.push(init);
8-
}
4+
const corePrompts = [deploy, init];
95

106
export { corePrompts };

0 commit comments

Comments
 (0)