fix: capitalise Pyrodactyl where needed

This commit is contained in:
he3als
2024-08-15 11:05:19 +01:00
parent 37dad35db4
commit 533558fba1
2 changed files with 2 additions and 2 deletions

View File

@@ -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'),
/*
|--------------------------------------------------------------------------

View File

@@ -13,7 +13,7 @@ export interface PageContentBlockProps {
const PageContentBlock: React.FC<PageContentBlockProps> = ({ title, showFlashKey, className, children }) => {
useEffect(() => {
if (title) {
document.title = title + ' | pyrodactyl';
document.title = title + ' | Pyrodactyl';
}
}, [title]);