minor fixes

This commit is contained in:
Gitea
2025-05-06 20:22:14 +05:30
parent 671cb6212d
commit 38fdb7181b
2 changed files with 2 additions and 13 deletions

View File

@@ -294,17 +294,6 @@ class Inbox extends Component
$this->initial = true;
}
public function processQueue(): void
{
try {
Artisan::call('queue:work', [
'--once' => true,
]);
} catch (\Exception $exception) {
\Log::error($exception->getMessage());
}
}
public function delete($messageId) {
try {

View File

@@ -3,12 +3,12 @@
<head>
@include('partials.head')
</head>
<body class="min-h-screen bg-white antialiased dark:bg-linear-to-b dark:from-neutral-950 dark:to-neutral-900">
<body class="min-h-screen bg-white antialiased dark:bg-linear-to-b dark:from-zinc-900 dark:to-zinc-900">
<div class="bg-background flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
<div class="flex w-full max-w-sm flex-col gap-2">
<a href="{{ route('home') }}" class="flex flex-col items-center gap-2 font-medium" wire:navigate>
<span class="flex h-9 w-9 mb-1 items-center justify-center rounded-md">
<x-app-logo-icon class="size-9 fill-current text-black dark:text-white" />
<x-app-logo-icon class="size-9 fill-current text-accent dark:text-white" />
</span>
<span class="sr-only">{{ config('app.name', 'Laravel') }}</span>
</a>