mirror of
https://github.com/pyrohost/pyrodactyl.git
synced 2026-04-06 04:01:58 +02:00
fix: capitalise Pyrodactyl where needed
This commit is contained in:
@@ -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'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -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]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user