🔧 Bootloader: Remove unnecessary wrapping action from inside theme

This commit is contained in:
Ben Word
2025-01-04 09:03:59 -05:00
parent 256128b0cc
commit 25ef858d58

View File

@@ -33,16 +33,14 @@ require $composer;
|
*/
add_action('after_setup_theme', function () {
Application::configure()
->withMiddleware(function (Middleware $middleware) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
})
->boot();
}, 0);
Application::configure()
->withMiddleware(function (Middleware $middleware) {
//
})
->withExceptions(function (Exceptions $exceptions) {
//
})
->boot();
/*
|--------------------------------------------------------------------------