remove log

This commit is contained in:
Danel Kungla
2025-10-03 12:46:14 +03:00
parent b9bacd548d
commit c47f41fab6

View File

@@ -24,7 +24,7 @@ export function RoleBadge({ role }: { role: Role }) {
// @ts-expect-error: hard to type this since users can add custom roles // @ts-expect-error: hard to type this since users can add custom roles
const className = roleClassNameBuilder({ role }); const className = roleClassNameBuilder({ role });
const isCustom = !(role in roles); const isCustom = !(role in roles);
console.log('role', role);
return ( return (
<Badge className={className} variant={isCustom ? 'outline' : 'default'}> <Badge className={className} variant={isCustom ? 'outline' : 'default'}>
<span data-test={'member-role-badge'}> <span data-test={'member-role-badge'}>