fmt(js): npm run fix on merge (#71892)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot] 2026-07-26 10:16:26 +00:00 committed by GitHub
parent 080ee077a8
commit af217e444b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -22,8 +22,7 @@ const TAB_VERTICAL =
'w-full max-h-48 justify-center not-first:border-t not-first:border-t-(--ui-stroke-quaternary) [writing-mode:vertical-rl]'
// Full height, so the active tab alone covers that row and cuts the rule.
const TAB_ACTIVE =
'h-full text-foreground [--tab-bg:var(--pane-tab-active-bg,var(--ui-editor-surface-background))]'
const TAB_ACTIVE = 'h-full text-foreground [--tab-bg:var(--pane-tab-active-bg,var(--ui-editor-surface-background))]'
// Inactive = gutter. Hover DARKENS: active is the lighter content surface, so a
// lightening wash made the two nearly indistinguishable.

View file

@ -127,7 +127,7 @@ describe('external link helpers', () => {
render(
<ExternalLink href="https://example.com/path/to/resource" showExternalIcon>
Example link
</ExternalLink>,
</ExternalLink>
)
const link = screen.getByRole('link', { name: 'Example link' })