From 218dadbe04dc8dad543c41559b2361e19589eec5 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Thu, 9 Jan 2025 07:34:21 -0500 Subject: [PATCH] ReporterTestable.None Is Good - DevComp --- src/plugins/devCompanion/index.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/devCompanion/index.tsx b/src/plugins/devCompanion/index.tsx index 3894bbbd..a72c519e 100644 --- a/src/plugins/devCompanion/index.tsx +++ b/src/plugins/devCompanion/index.tsx @@ -22,9 +22,7 @@ import { Logger } from "@utils/Logger"; import definePlugin, { OptionType, ReporterTestable } from "@utils/types"; import { initWs, socket, stopWs } from "./initWs"; -console.log("imported"); export const PORT = 8485; -const NAV_ID = "dev-companion-reconnect"; export const logger = new Logger("DevCompanion"); @@ -61,8 +59,6 @@ export default definePlugin({ }, start() { - // if we're running the reporter, we need to initws in the reporter file to avoid a race condition - if (!IS_DEV) throw new Error("This plugin requires dev mode to run, please build with pnpm build --dev"); initWs(); },