Skip to content

Commit 103507d

Browse files
committed
Fix site name
1 parent 66410a3 commit 103507d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/scripts/components/NavigationBar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ import { ApplicationStore } from '@/state';
1111

1212
export default () => {
1313
const user = useStoreState((state: ApplicationStore) => state.user.data!);
14+
const name = useStoreState((state: ApplicationStore) => state.settings.data!.name);
1415

1516
return (
1617
<div id={'navigation'}>
1718
<div className={'mx-auto w-full flex items-center'} style={{ maxWidth: '1200px', height: '3.5rem' }}>
1819
<div id={'logo'}>
1920
<Link to={'/'}>
20-
Pterodactyl
21+
{name}
2122
</Link>
2223
</div>
2324
<div className={'right-navigation'}>

0 commit comments

Comments
 (0)