desktop-master-git2
bunsenstraat 3 months ago
parent 462c9caeca
commit 514d2b502d
  1. 1
      apps/remix-ide/src/app/plugins/electron/appUpdaterPlugin.ts
  2. 1
      apps/remixdesktop/src/plugins/appUpdater.ts
  3. 1
      apps/remixdesktop/src/preload.ts
  4. 1
      libs/remix-ui/solidity-compiler/src/lib/logic/compileTabLogic.ts

@ -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[] = []
constructor() {
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
}

Loading…
Cancel
Save