fix: app setting click pop (#1660)

This commit is contained in:
kimjion 2023-12-01 09:44:32 +08:00 committed by GitHub
parent 22bc9ddc73
commit 1b3a98425f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,6 +138,8 @@ const AppCard = ({ app, onRefresh }: AppCardProps) => {
<>
<div
onClick={(e) => {
if (showSettingsModal)
return
e.preventDefault()
push(`/app/${app.id}/overview`)
}}