From d5a1bbf59ce4d26e95f1e60d259281d3b202d814 Mon Sep 17 00:00:00 2001 From: STetsing <41009393+STetsing@users.noreply.github.com> Date: Tue, 1 Oct 2024 13:02:46 +0200 Subject: [PATCH] added remixai api --- apps/remixdesktop/src/plugins/remixAIDektop.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/remixdesktop/src/plugins/remixAIDektop.ts b/apps/remixdesktop/src/plugins/remixAIDektop.ts index 6bbc3fc187..d494300780 100644 --- a/apps/remixdesktop/src/plugins/remixAIDektop.ts +++ b/apps/remixdesktop/src/plugins/remixAIDektop.ts @@ -22,11 +22,6 @@ export class RemixAIDesktopPlugin extends ElectronBasePlugin { constructor() { super(profile, clientProfile, RemixAIDesktopPluginClient) this.methods = [...super.methods] - - for (const client of this.clients) { - console.log(client) - client.enable() - } } } @@ -52,7 +47,6 @@ class RemixAIDesktopPluginClient extends ElectronBasePluginClient { async onActivation(): Promise { console.log("Activation", "loaded the remix plugin client application side") this.onload(() => { - this.emit('activated') }) }