We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66410a3 commit 103507dCopy full SHA for 103507d
resources/scripts/components/NavigationBar.tsx
@@ -11,13 +11,14 @@ import { ApplicationStore } from '@/state';
11
12
export default () => {
13
const user = useStoreState((state: ApplicationStore) => state.user.data!);
14
+ const name = useStoreState((state: ApplicationStore) => state.settings.data!.name);
15
16
return (
17
<div id={'navigation'}>
18
<div className={'mx-auto w-full flex items-center'} style={{ maxWidth: '1200px', height: '3.5rem' }}>
19
<div id={'logo'}>
20
<Link to={'/'}>
- Pterodactyl
21
+ {name}
22
</Link>
23
</div>
24
<div className={'right-navigation'}>
0 commit comments