From 5288dbd917fffb5cfc82f47ec4bc4f5ea6889726 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 8 Jun 2026 21:22:31 +0200 Subject: [PATCH] fix: remove static modifier from getTitle() to match non-static parent method --- app/Filament/Pages/General/ThemeSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Filament/Pages/General/ThemeSettings.php b/app/Filament/Pages/General/ThemeSettings.php index b612ceb..756c539 100755 --- a/app/Filament/Pages/General/ThemeSettings.php +++ b/app/Filament/Pages/General/ThemeSettings.php @@ -36,7 +36,7 @@ final class ThemeSettings extends Page implements HasForms } #[\Override] - public static function getTitle(): string + public function getTitle(): string { return __('Theme & Button Settings'); }