hide switch modal

This commit is contained in:
JzoNg 2024-03-07 23:00:23 +08:00
parent 50b4c7fa18
commit e36d62f08c
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ const AppInfo = ({ expand }: IAppInfoProps) => {
const [showDuplicateModal, setShowDuplicateModal] = useState(false)
const [showConfirmDelete, setShowConfirmDelete] = useState(false)
const [showSwitchTip, setShowSwitchTip] = useState<string>('')
const [showSwitchModal, setShowSwitchModal] = useState<boolean>(true)
const [showSwitchModal, setShowSwitchModal] = useState<boolean>(false)
const mutateApps = useContextSelector(
AppsContext,