Revert "[autofix.ci] apply automated fixes"

This reverts commit 01a05289e9.
This commit is contained in:
Stephen Zhou
2026-01-26 19:29:21 +08:00
parent 2fc02bf1bc
commit 4cde6e31ca
688 changed files with 2998 additions and 1639 deletions

View File

@ -1,6 +1,7 @@
'use client'
import type { FC } from 'react'
import type { GithubRepo } from '@/models/common'
import { RiLoader2Line } from '@remixicon/react'
import { useQuery } from '@tanstack/react-query'
import { IS_DEV } from '@/config'
@ -27,7 +28,7 @@ const GithubStar: FC<{ className: string }> = (props) => {
})
if (isFetching)
return <span className="i-ri-loader-2-line size-3 shrink-0 animate-spin text-text-tertiary" />
return <RiLoader2Line className="size-3 shrink-0 animate-spin text-text-tertiary" />
if (isError)
return <span {...props}>{defaultData.stargazers_count.toLocaleString()}</span>