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(); },