From 6917e031ef782de845bcdcd022b63f758c6b9488 Mon Sep 17 00:00:00 2001 From: Juan Felipe Zapata Moreno Date: Tue, 19 Aug 2025 09:02:24 -0600 Subject: [PATCH] =?UTF-8?q?Se=20quit=C3=B3=20el=20modo=20oscuro?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/js/app.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/resources/js/app.js b/resources/js/app.js index 4670131..a972537 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -22,9 +22,7 @@ window.Notify = new Notify(); window.sessionFresh = new SessionFresh(); window.Swal = Swal; window.TwScreen = new TailwindScreen(); -window.darkMode = darkMode; -bootTheme(); bootSidebar(); createInertiaApp({ @@ -34,8 +32,8 @@ createInertiaApp({ title: (title) => `${title} - ${appName}`, resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')), setup({ el, App, props, plugin }) { - return createApp({ - render: () => h(App, props) + return createApp({ + render: () => h(App, props) }) .use(plugin) .use(ZiggyVue, Ziggy)