fix(chat): hide autocomplete tooltips on mobile

This commit is contained in:
Bohdan Triapitsyn
2026-08-23 01:05:09 +03:00
parent 1a627e06ad
commit 8f2c1ecc8b
3 changed files with 3 additions and 3 deletions
@@ -127,7 +127,7 @@ export const SkillAutocomplete = React.forwardRef<SkillAutocompleteHandle, Skill
const isProject = skill.scope === 'project';
const source = skill.source || 'opencode';
return (
<AutocompleteRowTooltip description={skill.description} active={index === selectedIndex}>
<AutocompleteRowTooltip description={skill.description} active={!isMobile && index === selectedIndex}>
<div
key={`${skill.name}-${skill.scope}`}
ref={(el) => {