Skip to content

Commit 3f44cf6

Browse files
committed
Fix comment
1 parent 3633cff commit 3f44cf6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/stack-shared/src/ai/prompts.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ export function getSdkSetupPrompt(mainType: "ai-prompt" | "nextjs" | "react" | "
8585
const isMaybeNextjs = isDefinitelyNextjs || mainType === "ai-prompt";
8686

8787
const isDefinitelyBackend = mainType === "nodejs" || mainType === "bun" || mainType === "nextjs";
88-
const isMaybeBackend = isDefinitelyBackend || mainType === "js";
88+
const isMaybeBackend = isDefinitelyBackend || mainType === "js" || mainType === "ai-prompt";
8989
const isDefinitelyFrontend = isDefinitelyReact;
90-
const isMaybeFrontend = isDefinitelyFrontend || mainType === "js";
90+
const isMaybeFrontend = isDefinitelyFrontend || mainType === "js" || mainType === "ai-prompt";
9191

9292
const isAiPrompt = mainType === "ai-prompt";
9393

0 commit comments

Comments
 (0)