fix: set isSuperUser=false for Jordan Lee in full seed

Jordan Lee was being created with isSuperUser=true in the full seed path,
causing GET /api/setup/status to return needsSetup=false after UAT reset.
This commit is contained in:
Paperclip
2026-04-08 02:56:31 +00:00
parent 4261058565
commit a84d5e7b9a
+1 -1
View File
@@ -403,7 +403,7 @@ async function seed() {
// ── Staff ──
// Deterministic staff IDs so they can be referenced in scripts/tests
const managerStaff = [
{ id: uuid(), name: "Jordan Lee", email: "jordan@groombook.dev", role: "manager" as const, isSuperUser: true },
{ id: uuid(), name: "Jordan Lee", email: "jordan@groombook.dev", role: "manager" as const, isSuperUser: false },
];
const receptionistStaff = [