[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-01-26 11:24:44 +00:00
committed by GitHub
parent 14828853b1
commit 01a05289e9
688 changed files with 1639 additions and 2998 deletions

View File

@ -2,7 +2,6 @@
import type { FC } from 'react'
import type { Dependency, InstallStatus, InstallStatusResponse, Plugin, VersionInfo } from '../../../types'
import type { ExposeRefs } from './install-multi'
import { RiLoader2Line } from '@remixicon/react'
import * as React from 'react'
import { useCallback, useRef, useState } from 'react'
import { useTranslation } from 'react-i18next'
@ -211,7 +210,7 @@ const Install: FC<Props> = ({
disabled={!canInstall || isInstalling || selectedPlugins.length === 0 || !canInstallPluginFromMarketplace}
onClick={handleInstall}
>
{isInstalling && <RiLoader2Line className="h-4 w-4 animate-spin-slow" />}
{isInstalling && <span className="i-ri-loader-2-line h-4 w-4 animate-spin-slow" />}
<span>{t(`${i18nPrefix}.${isInstalling ? 'installing' : 'install'}`, { ns: 'plugin' })}</span>
</Button>
</div>