diff --git a/snap-client/src/app.tsx b/snap-client/src/app.tsx index 04d0a93..5143a6f 100644 --- a/snap-client/src/app.tsx +++ b/snap-client/src/app.tsx @@ -74,8 +74,6 @@ function App() { const theme = config?.highlight_theme ?? DEFAULT_THEME; const cssLink = document.createElement("link"); cssLink.rel = "stylesheet"; - - // add a ref to node_modules/highlight.js/styles/{theme}.css so you dont have to get it from the internet cssLink.href = `./styles/${theme}.css`; document.head.appendChild(cssLink); return () => {