[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,9 +2,7 @@ import type { Credential, PluginPayload } from '../types'
import type {
PortalToFollowElemOptions,
} from '@/app/components/base/portal-to-follow-elem'
import {
RiArrowDownSLine,
} from '@remixicon/react'
import {
memo,
useCallback,
@ -211,7 +209,7 @@ const Authorized = ({
` (${unavailableCredentials.length} ${t('auth.unavailable', { ns: 'plugin' })})`
)
}
<RiArrowDownSLine className="ml-0.5 h-4 w-4" />
<span className="i-ri-arrow-down-sline ml-0.5 h-4 w-4" />
</Button>
)
}

View File

@ -1,10 +1,5 @@
import type { Credential } from '../types'
import {
RiCheckLine,
RiDeleteBinLine,
RiEditLine,
RiEqualizer2Line,
} from '@remixicon/react'
import {
memo,
useMemo,
@ -120,7 +115,7 @@ const Item = ({
<div className="h-4 w-4">
{
selectedCredentialId === credential.id && (
<RiCheckLine className="h-4 w-4 text-text-accent" />
<span className="i-ri-check-line h-4 w-4 text-text-accent" />
)
}
</div>
@ -181,7 +176,7 @@ const Item = ({
setRenameValue(credential.name)
}}
>
<RiEditLine className="h-4 w-4 text-text-tertiary" />
<span className="i-ri-edit-line h-4 w-4 text-text-tertiary" />
</ActionButton>
</Tooltip>
)
@ -203,7 +198,7 @@ const Item = ({
)
}}
>
<RiEqualizer2Line className="h-4 w-4 text-text-tertiary" />
<span className="i-ri-equalizer-2-line h-4 w-4 text-text-tertiary" />
</ActionButton>
</Tooltip>
)
@ -219,7 +214,7 @@ const Item = ({
onDelete?.(credential.id)
}}
>
<RiDeleteBinLine className="h-4 w-4 text-text-tertiary hover:text-text-destructive" />
<span className="i-ri-delete-bin-line h-4 w-4 text-text-tertiary hover:text-text-destructive" />
</ActionButton>
</Tooltip>
)