From 533558fba108f2b43679f77851416423beea67a0 Mon Sep 17 00:00:00 2001 From: he3als <65787561+he3als@users.noreply.github.com> Date: Thu, 15 Aug 2024 11:05:19 +0100 Subject: [PATCH] fix: capitalise Pyrodactyl where needed --- config/app.php | 2 +- resources/scripts/components/elements/PageContentBlock.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/app.php b/config/app.php index 16648f6b0..980604421 100644 --- a/config/app.php +++ b/config/app.php @@ -23,7 +23,7 @@ return [ | any other location as required by the application or its packages. */ - 'name' => env('APP_NAME', 'pyrodactyl'), + 'name' => env('APP_NAME', 'Pyrodactyl'), /* |-------------------------------------------------------------------------- diff --git a/resources/scripts/components/elements/PageContentBlock.tsx b/resources/scripts/components/elements/PageContentBlock.tsx index 7cdfb9cd3..e9e4d75c2 100644 --- a/resources/scripts/components/elements/PageContentBlock.tsx +++ b/resources/scripts/components/elements/PageContentBlock.tsx @@ -13,7 +13,7 @@ export interface PageContentBlockProps { const PageContentBlock: React.FC = ({ title, showFlashKey, className, children }) => { useEffect(() => { if (title) { - document.title = title + ' | pyrodactyl'; + document.title = title + ' | Pyrodactyl'; } }, [title]);