Skip to content
Snippets Groups Projects
Commit 19c57d94 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

fix: reverse config hint

parent 9112d080
No related branches found
No related tags found
No related merge requests found
......@@ -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({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment