diff --git a/shop/components/admin/user-list.tsx b/shop/components/admin/user-list.tsx index f282ec9..8d0e0f4 100644 --- a/shop/components/admin/user-list.tsx +++ b/shop/components/admin/user-list.tsx @@ -134,10 +134,11 @@ export function UserList({ initialUsers, companies }: UserListProps) { }) : filteredUsers + console.log('COMPANIES IN USERLIST:', companies) let lastCompanyName: string | null = null return ( - + Benutzerverwaltung @@ -169,7 +170,7 @@ export function UserList({ initialUsers, companies }: UserListProps) { - +
E-Mail diff --git a/shop/components/ui/table.tsx b/shop/components/ui/table.tsx index 7add5f1..c3a9b1d 100644 --- a/shop/components/ui/table.tsx +++ b/shop/components/ui/table.tsx @@ -4,11 +4,11 @@ import * as React from "react" import { cn } from "@/lib/utils" -function Table({ className, ...props }: React.ComponentProps<"table">) { +function Table({ className, containerClassName, ...props }: React.ComponentProps<"table"> & { containerClassName?: string }) { return (