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]);