From 54453c5f44b51c7e0791522ede8a7a3cde0efa63 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 27 Jun 2022 17:16:33 +0200 Subject: [PATCH] Fix invalid relative import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Worked locally because it's served at the root… --- state.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state.js b/state.js index 4819695..6c526cb 100644 --- a/state.js +++ b/state.js @@ -1,6 +1,6 @@ import * as irc from "./lib/irc.js"; import Client from "./lib/client.js"; -import { createContext } from "../lib/index.js"; +import { createContext } from "./lib/index.js"; export const SERVER_BUFFER = "*";