chore(version): 0.8.20

This commit is contained in:
kangfenmao 2024-12-03 12:26:39 +08:00
parent a4d1bcffd9
commit 115f111071
2 changed files with 2 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "CherryStudio",
"version": "0.8.19",
"version": "0.8.20",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",

View File

@ -2,10 +2,9 @@ import { HStack } from '@renderer/components/Layout'
import { useSettings } from '@renderer/hooks/useSettings'
import { useAppDispatch } from '@renderer/store'
import { setEnableTopicNaming } from '@renderer/store/settings'
import { Divider, Modal, Switch, Typography } from 'antd'
import { Divider, Modal, Switch } from 'antd'
import { useState } from 'react'
import { useTranslation } from 'react-i18next'
import styled from 'styled-components'
import { TopView } from '../../../components/TopView'
@ -13,10 +12,6 @@ interface Props {
resolve: (data: any) => void
}
const Title = styled(Typography.Title)`
margin-bottom: 16px;
`
const PopupContainer: React.FC<Props> = ({ resolve }) => {
const [open, setOpen] = useState(true)
const { t } = useTranslation()