From c5dff2a617f1b023b7720f13ea026d1a1bb0d78b Mon Sep 17 00:00:00 2001 From: zyachel Date: Thu, 18 Apr 2024 23:52:37 +0530 Subject: [PATCH] fix(theme): fix theme not being applied on a single click --- public/js/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/js/index.js b/public/js/index.js index 772fd44..8b4d369 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -17,7 +17,8 @@ const setMetaTheme = () => { // EVENT LISTENER //////////////////////////////////////////////////////// btnTheme.addEventListener('click', () => { - const themeToSet = document.documentElement.getAttribute('theme') === 'light' ? 'dark' : 'light'; + const curTheme = document.documentElement.getAttribute('theme') ?? 'light'; + const themeToSet = curTheme === 'light' ? 'dark' : 'light'; setTheme(themeToSet); if (isLocalStorageAccessible()) localStorage.setItem('theme', themeToSet); setMetaTheme();