Reverted to commit 20eca8c245

This commit is contained in:
gpt-engineer-app[bot]
2025-09-30 17:16:50 +00:00
parent 97ae436e11
commit bd159d1972

View File

@@ -3,11 +3,7 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com
import { ProfileManager } from '@/components/moderation/ProfileManager'; import { ProfileManager } from '@/components/moderation/ProfileManager';
import { UserRoleManager } from '@/components/moderation/UserRoleManager'; import { UserRoleManager } from '@/components/moderation/UserRoleManager';
import { Users, Shield, UserCheck, UserX } from 'lucide-react'; import { Users, Shield, UserCheck, UserX } from 'lucide-react';
import { useIsMobile } from '@/hooks/use-mobile';
export function UserManagement() { export function UserManagement() {
const isMobile = useIsMobile();
return <div className="space-y-6"> return <div className="space-y-6">
@@ -15,7 +11,7 @@ export function UserManagement() {
<TabsList className="grid w-full grid-cols-2"> <TabsList className="grid w-full grid-cols-2">
<TabsTrigger value="profiles" className="flex items-center gap-2"> <TabsTrigger value="profiles" className="flex items-center gap-2">
<UserCheck className="w-4 h-4" /> <UserCheck className="w-4 h-4" />
{isMobile ? 'Users' : 'User Management'} Profile Management
</TabsTrigger> </TabsTrigger>
<TabsTrigger value="roles" className="flex items-center gap-2"> <TabsTrigger value="roles" className="flex items-center gap-2">
<Shield className="w-4 h-4" /> <Shield className="w-4 h-4" />