fix: build tauri app failed in macOS (#2828)

This commit is contained in:
Kilu.He 2023-06-17 22:02:03 +08:00 committed by GitHub
parent 177f7c4fa3
commit 202cd90711
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,8 @@
"exceptionDomain": "", "exceptionDomain": "",
"frameworks": [], "frameworks": [],
"providerShortName": null, "providerShortName": null,
"signingIdentity": null "signingIdentity": null,
"minimumSystemVersion": "10.15.0"
}, },
"resources": [], "resources": [],
"shortDescription": "", "shortDescription": "",

View File

@ -18,7 +18,6 @@ interface Option {
title?: string; title?: string;
icon?: React.ReactNode; icon?: React.ReactNode;
key: BlockMenuOption; key: BlockMenuOption;
openNextMenu?: boolean;
} }
function BlockMenu({ id, onClose }: { id: string; onClose: () => void }) { function BlockMenu({ id, onClose }: { id: string; onClose: () => void }) {