Skip to content

Commit 8b0d713

Browse files
committed
fix(landing/QueryLanding): drop the Refetch label so the controls stay on one row
1 parent 8b3b004 commit 8b0d713

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/components/landing/QueryLanding.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,20 +455,21 @@ function QueryCachePanel() {
455455
<div className="flex flex-wrap items-center gap-2">
456456
<button
457457
type="button"
458-
className="inline-flex items-center gap-1.5 rounded-md border border-border-subtle px-3 py-2 text-ds-label-sm text-text-primary/70 transition-colors hover:text-text-primary focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[var(--landing-accent-bright)]"
458+
aria-label="Refetch"
459+
title="Refetch"
460+
className="inline-flex items-center rounded-md border border-border-subtle px-3 py-2 text-text-primary/70 transition-colors hover:text-text-primary focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[var(--landing-accent-bright)]"
459461
onClick={() => selected.query.refetch()}
460462
>
461463
<ArrowsClockwiseIcon
462464
aria-hidden="true"
463-
size={13}
465+
size={14}
464466
weight="bold"
465467
className={
466468
selected.query.isFetching
467469
? 'animate-spin motion-reduce:animate-none'
468470
: ''
469471
}
470472
/>
471-
Refetch
472473
</button>
473474
<button
474475
type="button"

0 commit comments

Comments
 (0)