import { notification } from 'antd'; import React from 'react'; import { t } from 'tailchat-shared'; export function showPluginLoadError(loadErrorPluginNames: string[]) { notification.warn({ message: (

{t('插件加载失败')}:

{loadErrorPluginNames.map((name) => (

- {name}

))}
), duration: 2, }); }