diff --git a/packages/suite-desktop-core/scripts/notarize.ts b/packages/suite-desktop-core/scripts/notarize.ts index 79aa2dd046f4..3c26a664cfb3 100644 --- a/packages/suite-desktop-core/scripts/notarize.ts +++ b/packages/suite-desktop-core/scripts/notarize.ts @@ -19,13 +19,11 @@ const notarizeAfterSignHook: Hooks['afterSign'] = context => { return notarize({ tool: 'notarytool', - appBundleId: 'io.trezor.TrezorSuite', appPath, appleId: process.env.APPLEID, appleIdPassword: process.env.APPLEIDPASS, teamId: process.env.APPLETEAMID, - // TODO fix: notarize tool is known to be working, but TS fails: no overload matches this call - } as any); + }); }; export default notarizeAfterSignHook;