fix: appearance fix
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-10-27 21:30:03 +05:45
parent 6780f18848
commit ce66173edb
3 changed files with 7 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ class HandleAppearance
*/
public function handle(Request $request, Closure $next): Response
{
View::share('appearance', $request->cookie('appearance') ?? 'system');
View::share('appearance', $request->cookie('appearance') ?? 'light');
return $next($request);
}