From 04fe3b4744df10a944dec0e9f57bf7e0266db3a4 Mon Sep 17 00:00:00 2001 From: Wira Irawan Date: Mon, 11 May 2026 13:05:44 +0700 Subject: [PATCH] Update seeded admin email --- backend/prisma/seed-admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/prisma/seed-admin.js b/backend/prisma/seed-admin.js index e63b9ee..96e1108 100644 --- a/backend/prisma/seed-admin.js +++ b/backend/prisma/seed-admin.js @@ -9,7 +9,7 @@ dotenv.config({ path: path.resolve(process.cwd(), '.env'), quiet: true }); const prisma = new PrismaClient(); async function main() { - const email = 'admin@example.com'; + const email = 'admin@bizone.id'; const password = 'ChangeMe123!'; const passwordHash = await bcrypt.hash(password, 10);