fix(admin): remove employees.tsx layout wrapper — breaks nested routing

Deleting employees.tsx allows employees/index.tsx to serve /admin/employees
directly (same pattern as roles/), fixing the blank page regression.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ashwin Kumar 2026-03-26 08:09:26 +01:00
parent 1844170429
commit 4ca69877d4

View file

@ -1,6 +0,0 @@
import { Outlet } from '@solidjs/router';
// Layout wrapper — actual pages are in employees/index.tsx and employees/create.tsx
export default function EmployeesLayout() {
return <Outlet />;
}