Skip to content

Commit

Permalink
chore(version): 0.8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Dec 3, 2024
1 parent a4d1bcf commit 115f111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,16 @@ 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'

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()
Expand Down

0 comments on commit 115f111

Please sign in to comment.