Added Agency status and fixed ResourceTitle for Manage User

This commit is contained in:
rockyeverlast
2025-09-12 21:09:00 +05:30
parent 8efb309fa9
commit 44f34490a0
2 changed files with 3 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ const tableHeadRow = [
"Registered Office Address",
"Website/Domain",
"GST no.",
"Agency Status",
"Action"
];
@@ -122,6 +123,7 @@ const AgencyMaster = () => {
"Registered Office Address": agency.registered_office,
"Website/Domain": agency.domain_name,
"GST no.": agency.gst_number,
"Agency Status": agency.is_domain_verified ? "Verified" : "Unverified",
"is_active": agency.is_active,
Action: (
<HStack justifyContent="center">

View File

@@ -21,7 +21,7 @@ export const nav = [
initPath: "/manage-users",
Icon: BiUserPin,
type: 'multiple',
resourceTitle: 'Manage Users',
resourceTitle: 'Manage User',
children: [
{
title: "Register Users",