cosmetics: fixed admin skeleton, use password field on auth, use $console in auth middleware

This commit is contained in:
dswbx
2025-04-01 13:49:58 +02:00
parent 44b3f72005
commit e4608b7df7
5 changed files with 22 additions and 12 deletions

View File

@@ -66,15 +66,15 @@ const Skeleton = ({ theme }: { theme?: any }) => {
<Logo theme={actualTheme} />
</div>
<nav className="hidden md:flex flex-row gap-2.5 pl-0 p-2.5 items-center">
{[...new Array(5)].map((item, key) => (
{[...new Array(4)].map((item, key) => (
<AppShell.NavLink key={key} as="span" className="active h-full opacity-50">
<div className="w-10 h-3" />
<div className="w-18 h-3" />
</AppShell.NavLink>
))}
</nav>
<nav className="flex md:hidden flex-row items-center">
<nav className="flex md:hidden flex-row gap-2.5 pl-0 p-2.5 items-center">
<AppShell.NavLink as="span" className="active h-full opacity-50">
<div className="w-10 h-3" />
<div className="w-20 h-3" />
</AppShell.NavLink>
</nav>
<div className="flex flex-grow" />