dify/web/app/components/plugins/update-plugin/index.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

22 lines
650 B
TypeScript

'use client'
import type { FC } from 'react'
import type { UpdatePluginModalType } from '../types'
import * as React from 'react'
import { PluginSource } from '../types'
import UpdateFromGitHub from './from-github'
import UpdateFromMarketplace from './from-market-place'
const UpdatePlugin: FC<UpdatePluginModalType> = ({
type,
marketPlace,
github,
onCancel,
onSave,
}) => {
if (type === PluginSource.github) {
return <UpdateFromGitHub payload={github!} onSave={onSave} onCancel={onCancel} />
}
return <UpdateFromMarketplace payload={marketPlace!} onSave={onSave} onCancel={onCancel} />
}
export default React.memo(UpdatePlugin)