From 2f5c6e0f0dd2818c6001825e937f3c5ff8a67122 Mon Sep 17 00:00:00 2001 From: Gemini AI Date: Sun, 14 Dec 2025 21:34:40 +0400 Subject: [PATCH] Fix: Skill selector height increased to show all 24 skills --- bin/opencode-ink.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/opencode-ink.mjs b/bin/opencode-ink.mjs index 0e16b1f..9b3760c 100644 --- a/bin/opencode-ink.mjs +++ b/bin/opencode-ink.mjs @@ -4191,8 +4191,8 @@ This gives the user a chance to refine requirements before implementation. h(Text, { color: 'magenta', bold: true }, '🎯 Select a Skill'), h(Text, { color: 'gray', dimColor: true }, 'Use ↑↓ to navigate, Enter to select'), - // Skill list with SelectInput - h(Box, { flexDirection: 'column', marginTop: 1, height: Math.min(18, rows - 8) }, + // Skill list with SelectInput (24 skills total) + h(Box, { flexDirection: 'column', marginTop: 1, height: Math.min(28, rows - 6) }, h(SelectInput, { items: skillItems, onSelect: handleSkillSelect,