From 19c57d945abd0b241db6711e4b0f4a874392f6f6 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Wed, 12 Jun 2024 10:46:50 +0200
Subject: [PATCH] fix: reverse config hint

---
 questions.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/questions.ts b/questions.ts
index 8e873dac..e2403898 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({
-- 
GitLab