@@ -163,7 +164,7 @@
-
+
{{ product.description }}
diff --git a/theme/static/theme/js/theme.js b/theme/static/theme/js/theme.js
index ab17e5c..d76bb37 100644
--- a/theme/static/theme/js/theme.js
+++ b/theme/static/theme/js/theme.js
@@ -10,9 +10,9 @@ if (currentTheme === 'dark') {
document.getElementById('theme-toggle-dark-icon').classList.remove('hidden')
}
+
function switchTheme() {
const theme = localStorage.getItem('theme')
- console.log("Switching theme from ", theme)
if (theme === 'dark') {
document.documentElement.classList.remove('dark')
@@ -25,4 +25,4 @@ function switchTheme() {
document.getElementById('theme-toggle-light-icon').classList.remove('hidden')
document.getElementById('theme-toggle-dark-icon').classList.add('hidden')
}
-}
\ No newline at end of file
+}