From 752918c1afa33fa59d3fd1676ce855f43e76a750 Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Wed, 20 May 2026 22:18:17 -0400 Subject: [PATCH] fix: remove extra closing brace in index page JS renderByCourse had a duplicate '}' that caused 'SyntaxError: missing ) in parenthetical' on load. --- src/Roux/Html.hs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Roux/Html.hs b/src/Roux/Html.hs index ea1548f..d437cae 100644 --- a/src/Roux/Html.hs +++ b/src/Roux/Html.hs @@ -357,7 +357,6 @@ searchJs = , " });" , " return html;" , "}" - , "}" , "" , "function escapeHtml(s) {" , " const d = document.createElement('div');"