From d86aed80594db55745cadff47a555d000cdac8c8 Mon Sep 17 00:00:00 2001 From: Michael Behrisch <m.behrisch@uu.nl> Date: Sat, 5 Feb 2022 21:36:45 +0100 Subject: [PATCH] fix(panels): :bug: fixes wrong folder import rawjson was imported with capital letters, which did not work after refactoring to only lowercase filenamings --- apps/graphpolaris/src/app/app.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/graphpolaris/src/app/app.tsx b/apps/graphpolaris/src/app/app.tsx index 7d754bbd9..f0d382be6 100644 --- a/apps/graphpolaris/src/app/app.tsx +++ b/apps/graphpolaris/src/app/app.tsx @@ -4,8 +4,8 @@ import { useAppDispatch, } from '@graphpolaris/shared/data-access/store'; import GridLayout from 'react-grid-layout'; -import Panel from '../web/components/panels/Panel'; -import { RawJSONVis } from '../web/components/visualisations/RawJSONVis/raw-jsonvis'; +import Panel from '../web/components/panels/panel'; +import { RawJSONVis } from '../web/components/visualisations/rawjsonvis/rawjsonvis'; export function App() { const dispatch = useAppDispatch(); -- GitLab