@ -8,7 +8,6 @@ const profile = {
export class appUpdaterPlugin extends ElectronPlugin {
constructor() {
console.log('appUpdaterPlugin')
super(profile)
}
@ -14,7 +14,6 @@ const profile = {
export class AppUpdaterPlugin extends ElectronBasePlugin {
clients: AppUpdaterPluginClient[] = []
console.log('AppUpdaterPlugin')
super(profile, clientProfile, AppUpdaterPluginClient)
this.methods = [...super.methods]
@ -29,7 +29,6 @@ contextBridge.exposeInMainWorld('electronAPI', {
return {
name,
on: (cb:any) => {
if(name === 'isogit') console.log('isogit', cb)
ipcRenderer.on(`${name}:send`, cb)
},
send: (message: Partial<Message>) => {
@ -130,7 +130,6 @@ export class CompileTabLogic {
async isHardhatProject () {
if (this.api.getFileManagerMode() === ('localhost') || this.api.isDesktop()) {
console.log('checking hardhat project')
return await this.api.fileExists('hardhat.config.js') || await this.api.fileExists('hardhat.config.ts')
} else return false