From 2a6ee2d96941ba3da740e7d67723d33f6f2c5925 Mon Sep 17 00:00:00 2001 From: Kenneth Bruskiewicz Date: Tue, 21 May 2024 16:38:06 -0700 Subject: [PATCH] workaround import for AppContext --- web/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.js b/web/index.js index 8f5e98ac..c97a4394 100644 --- a/web/index.js +++ b/web/index.js @@ -7,7 +7,7 @@ import { Template } from '@/lib/utils/templates'; import 'bootstrap/dist/css/bootstrap.min.css'; import '@/web/index.css'; -import { AppContext } from '@/web/AppContext'; +import { AppContext } from './AppContext'; // TODO eliminate need to export export const dhRoot = document.querySelector('#data-harmonizer-grid');