({
};
if (!column.getCanSort()) {
- return {title}
;
+ return {title}
;
}
+
return (
-
-
-
+
);
};
diff --git a/lib/seed.ts b/lib/seed.ts
index 4a808d2219..1ff00ee60b 100644
--- a/lib/seed.ts
+++ b/lib/seed.ts
@@ -4,6 +4,7 @@ import { v4 as uuidv4 } from "uuid";
export const userMockData = [
{
id: uuidv4(), // Generate a unique UUID.
+ tenantId: "12646005-9067-4d2a-a098-8bb378604362",
email: "admin@prowler.com",
name: "Admin Prowler",
companyName: "Prowler",
@@ -13,6 +14,7 @@ export const userMockData = [
},
{
id: uuidv4(), // Generate a unique UUID.
+ tenantId: "12646005-9067-4d2a-a098-8bb378604362",
email: "user@prowler.com",
name: "User Prowler",
companyName: "Prowler",
diff --git a/nextauth.d.ts b/nextauth.d.ts
index 052e4d4a7c..2fe2480ce5 100644
--- a/nextauth.d.ts
+++ b/nextauth.d.ts
@@ -4,6 +4,7 @@ declare module "next-auth" {
interface Session {
user: {
id: string;
+ tenantId: string;
firstName: string;
companyName: string;
email: string;