fix(create-medusa-app): remove "Created admin user" message (#12707)

This commit is contained in:
Shahed Nasser
2025-06-11 13:53:07 +03:00
committed by GitHub
parent a8118fa3c3
commit 774702153f
2 changed files with 5 additions and 11 deletions

View File

@@ -262,12 +262,6 @@ async function prepareProject({
message: "Ran Migrations",
})
// create admin user
factBoxOptions.interval = displayFactBox({
...factBoxOptions,
title: "Creating an admin user...",
})
await processManager.runProcess({
process: async () => {
const proc = await execute(
@@ -283,11 +277,6 @@ async function prepareProject({
},
})
factBoxOptions.interval = displayFactBox({
...factBoxOptions,
message: "Created admin user",
})
// TODO for now we just seed the default data
// we should add onboarding seeding again if it makes
// since once we re-introduce the onboarding flow.