diff --git a/src/app/api/teams/route.ts b/src/app/api/teams/route.ts index 6c79be7fc..43fe235d8 100644 --- a/src/app/api/teams/route.ts +++ b/src/app/api/teams/route.ts @@ -47,7 +47,7 @@ export async function POST(request: Request) { const { name, ownerId } = body; const teamId = uuid(); - const teamOwnerId = ownerId ?? auth.user.id; + const teamOwnerId = ownerId && auth.user.isAdmin ? ownerId : auth.user.id; const team = await createTeam( {