From d591c1c5cf22646ea2564be4f7a3ddfb88345daa Mon Sep 17 00:00:00 2001 From: eliasnijs Date: Wed, 28 Feb 2024 14:50:33 +0100 Subject: [PATCH] :ambulance: hotfix wrong import path --- solid-watchparty/src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solid-watchparty/src/App.jsx b/solid-watchparty/src/App.jsx index b4369e1..14bf995 100644 --- a/solid-watchparty/src/App.jsx +++ b/solid-watchparty/src/App.jsx @@ -8,7 +8,7 @@ import MenuPage from './pages/MenuPage'; import WatchPage from './pages/WatchPage'; /* config imports */ -import { BASEPATH } from 'config' +import { BASEPATH } from './config' const router = createBrowserRouter([ {path: (BASEPATH + "/"), element: },