Update Nav Bar, '/new-admin' > '/panel'

We cannot replace `/admin` as some functions still call the old admin area, Exporting Eggs
This commit is contained in:
notCharles 2024-05-11 18:54:47 -04:00
parent 5a00b8690d
commit f9247c9318
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class AdminPanelProvider extends PanelProvider
return $panel
->default()
->id('admin')
->path('panel')
->path('new-admin')
->login()
->brandName('Pelican')
->homeUrl('/')

View File

@ -71,7 +71,7 @@ export default () => {
</Tooltip>
{rootAdmin && (
<Tooltip placement={'bottom'} content={t<string>('admin')}>
<a href={'/admin'} rel={'noreferrer'}>
<a href={'/new-admin'} rel={'noreferrer'}>
<FontAwesomeIcon icon={faCogs} />
</a>
</Tooltip>