fmt(js): `npm run fix` on merge (#81102)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot] 2026-08-07 14:30:33 +00:00 committed by GitHub
parent a4b235c4b2
commit 48e2dcd7a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 12 deletions

View File

@ -1,15 +1,7 @@
import { useStore } from '@nanostores/react'
import { useVirtualizer } from '@tanstack/react-virtual'
import { AnimatePresence, motion } from 'motion/react'
import {
type CSSProperties,
type ReactNode,
type RefObject,
useEffect,
useMemo,
useRef,
useState
} from 'react'
import { type CSSProperties, type ReactNode, type RefObject, useEffect, useMemo, useRef, useState } from 'react'
import { Button } from '@/components/ui/button'
import { Codicon } from '@/components/ui/codicon'
@ -305,9 +297,7 @@ function ReviewDirRow({
</span>
{!open && <DiffCount added={node.added} className="text-[0.64rem] leading-4" removed={node.removed} />}
</div>
{!leaf && open && node.children && (
<ReviewNodeList animate={animate} depth={depth + 1} nodes={node.children} />
)}
{!leaf && open && node.children && <ReviewNodeList animate={animate} depth={depth + 1} nodes={node.children} />}
</>
)
}