+
+
+
+
+
+
+ ID Verification Bypass
+
+
+ Allow existing users to bypass HCA verification and let them access the platform.
+
+
+
+
+
+
+ setUserSearch(e.target.value)}
+ className="pl-10 h-9 bg-background/50 border-2 focus:border-primary/50 transition-colors"
+ />
+
+
+ {usersLoading ? (
+
+ ) : !userSearch ? (
+
+
+
+
+
+ Start searching to manage users
+
+
+ Type an email or username above to find users and toggle their verification bypass
+
+
+ ) : users.length === 0 ? (
+
+
+
No users found
+
+ Try a different search term
+
+
+ ) : (
+ <>
+
+ {users.map((user) => (
+
+
+
+
+
+ {user.personalChannel?.name?.[0]?.toUpperCase() ?? 'U'}
+
+
+
+
+
+
+ {user.personalChannel?.name ?? user.slack_id}
+
+ {user.isAdmin && (
+
+
+ Admin
+
+ )}
+ {user.bypassVerification && (
+
+
+ Bypass Active
+
+ )}
+
+
+ {user.email ?? 'No email'}
+
+
+
+
+
+
+ {user.bypassVerification && (
+
+ )}
+
+ ))}
+
+ >
+ )}
+