Added ability to resume previous chat on copilot

This commit is contained in:
n4ze3m
2024-05-24 21:01:10 +05:30
parent 9e2ef72486
commit 961f5180c6
7 changed files with 88 additions and 26 deletions

View File

@@ -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>
}