From 5f74fef0ed2b915c477d8c06873e8c6daec31a92 Mon Sep 17 00:00:00 2001 From: Marco Kutscha Date: Sat, 24 Feb 2024 13:28:19 +0100 Subject: [PATCH] [Chore] Cleaned up TODO Comments --- snap-client/src/app.tsx | 2 -- 1 file changed, 2 deletions(-) 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 () => {