Added ability to resume previous chat on copilot
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import { Tag } from "antd"
|
||||
import { useTranslation } from "react-i18next"
|
||||
|
||||
export const BetaTag = () => {
|
||||
export const BetaTag = ({className} : {className?: string}) => {
|
||||
const { t } = useTranslation("common")
|
||||
|
||||
return <Tag color="yellow">{t("beta")}</Tag>
|
||||
return <Tag className={className} color="yellow">{t("beta")}</Tag>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user