diff --git a/app/src/components/chat/ModelQualityPill.tsx b/app/src/components/chat/ModelQualityPill.tsx
index 53e511109..1a9391a02 100644
--- a/app/src/components/chat/ModelQualityPill.tsx
+++ b/app/src/components/chat/ModelQualityPill.tsx
@@ -18,12 +18,15 @@ export default function ModelQualityPill({ className }: ModelQualityPillProps) {
aria-label={t('composer.modelSelector')}
title={t('composer.modelSelector')}
disabled
- className={`flex items-center gap-1 text-xs text-stone-400 dark:text-neutral-500 disabled:cursor-default disabled:opacity-100 select-none ${className ?? ''}`}>
+ className={`flex items-center gap-1 rounded-full px-2 py-0.5 text-xs text-stone-400 dark:text-neutral-500 disabled:cursor-default disabled:opacity-100 select-none ${className ?? ''}`}>
OpenHuman
ยท
{t('composer.qualityHigh')}
+ {/* `shrink-0` keeps the chevron from being squeezed, and the button's
+ `px-2` gives it trailing padding so the glyph is never clipped against
+ the rounded pill edge (#3292). */}