diff --git a/src/components/NavBar.jsx b/src/components/NavBar.jsx
index 2ee8d19..9f34c5e 100644
--- a/src/components/NavBar.jsx
+++ b/src/components/NavBar.jsx
@@ -68,9 +68,7 @@ export function NavBar({ darkMode, toggleDarkMode }) {
darkMode ? 'Switch to light mode' : 'Switch to dark mode'
}
>
-
+ {darkMode ? : }
@@ -103,9 +101,7 @@ export function NavBar({ darkMode, toggleDarkMode }) {
darkMode ? 'Switch to light mode' : 'Switch to dark mode'
}
>
-
+ {darkMode ? : }
{!!user ? (
diff --git a/src/views/Login.jsx b/src/views/Login.jsx
index f335e5c..80ff936 100644
--- a/src/views/Login.jsx
+++ b/src/views/Login.jsx
@@ -46,11 +46,11 @@ function Login() {
className="fixed w-16 bottom-16 right-16 p-2 rounded-full text-primary-pink hover:text-primary-pink hover:text-opacity-60 font-semibold"
>
-
+ {darkMode ? (
+
+ ) : (
+
+ )}
diff --git a/vite.config.js b/vite.config.js
index 55fbfe6..c363f1f 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -45,9 +45,6 @@ export default defineConfig(({ mode }) => ({
output: {
manualChunks: (id) => {
if (id.includes('node_modules')) {
- if (id.includes('react')) {
- return 'vendor__react';
- }
if (id.includes('firebase')) {
return 'vendor__firebase';
}