fix(ui): prevent hidden quota row from overflowing

Use w-full instead of min-w-0/flex-1 + overflow-x-auto so the hidden
quota chips wrap cleanly instead of stretching the row.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
decolua
2026-07-26 10:03:31 +07:00
parent 72ec06a81d
commit 65ac9b3cec

View File

@@ -1270,7 +1270,7 @@ export default function ProviderLimits() {
visibility_off
</span>
<span className="shrink-0">Hidden:</span>
<div className="flex min-w-0 flex-1 items-center gap-1 overflow-x-auto whitespace-nowrap">
<div className="flex w-full items-center gap-1">
{hiddenQuotaRows.map((quotaRow) => (
<button
key={getQuotaVisibilityKey(quotaRow)}