diff --git a/CHANGELOG.md b/CHANGELOG.md index 941156f611d..a8f32d13922 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,2 @@ +- Fixed issue with prompt when Data Connect prompts user for framework generation. - Fixed a bug where the Admin SDK fails with ENOTFOUND when automatically connecting to the Data Connect emulator when run in the Functions emulator. (#8379) diff --git a/src/init/features/dataconnect/sdk.ts b/src/init/features/dataconnect/sdk.ts index c79cad5cf03..9ca52540b52 100644 --- a/src/init/features/dataconnect/sdk.ts +++ b/src/init/features/dataconnect/sdk.ts @@ -127,7 +127,7 @@ async function askQuestions(setup: Setup, config: Config): Promise { type: "checkbox", name: "fdcFrameworks", message: - `Which ${hasFrameworkEnabled && "additional "}frameworks would you like to generate SDKs for? ` + + `Which ${hasFrameworkEnabled ? "additional " : ""}frameworks would you like to generate SDKs for? ` + "Press Space to select features, then Enter to confirm your choices.", choices: unusedFrameworks.map((frameworkStr) => ({ value: frameworkStr,