diff --git a/questions.ts b/questions.ts
index 8e873dac83c5db9fbceaadd5fc7d78445f0ac938..e240389815cf3aaaff6a704beeca45a4dc21d297 100644
--- a/questions.ts
+++ b/questions.ts
@@ -656,7 +656,7 @@ export const askQuestions = async (
         t.supportedFrameworks?.includes(program.framework),
       );
       const toolChoices = options.map((tool) => ({
-        title: `${tool.display}${toolRequiresConfig(tool) ? "" : " (no config needed)"}`,
+        title: `${tool.display}${toolRequiresConfig(tool) ? " (needs configuration)" : ""}`,
         value: tool.name,
       }));
       const { toolsName } = await prompts({