fix(capa): show all active users in Assigned To dropdown

This commit is contained in:
2026-07-17 19:05:37 +08:00
parent a3ce59f2a8
commit e687510d0b
@@ -28,7 +28,7 @@ export default async function NewCapaPage({ params }: Props) {
const { data: users } = await admin
.from('users')
.select('id, name, department')
.eq('role', 'capa_owner')
.eq('active', true)
.order('name')
return (