changed msg whenenver emp not found- "No team members assigned yet"

This commit is contained in:
pramod mahajan 2025-09-08 15:06:24 +05:30
parent 63a5f7b902
commit da8d63ce62
2 changed files with 3 additions and 2 deletions

View File

@ -555,7 +555,7 @@ useEffect(() => {
colSpan={8}
style={{ paddingTop: "20px", textAlign: "center" }}
>
No Data Found
No team members assigned yet
</td>
</tr>
) : null}

View File

@ -43,6 +43,7 @@ import MainLoginWithOTPPage from "../pages/authentication/MainLoginWithOTPPage";
import MainRegisterPage from "../pages/authentication/MainRegisterPage";
import MainForgetPage from "../pages/authentication/MainForgetPage";
import MainResetPasswordPage from "../pages/authentication/MainResetPasswordPage";
import TenantPage from "../pages/Tenant/TenantPage";
const router = createBrowserRouter(
[
@ -83,6 +84,7 @@ const router = createBrowserRouter(
{ path: "/gallary", element: <ImageGallary /> },
{ path: "/expenses", element: <ExpensePage /> },
{ path: "/masters", element: <MasterPage /> },
{ path: "/tenants", element: <TenantPage /> },
{ path: "/help/support", element: <Support /> },
{ path: "/help/docs", element: <Documentation /> },
{ path: "/help/connect", element: <Connect /> },
@ -96,7 +98,6 @@ const router = createBrowserRouter(
},
],
{
// Enables the v7 splat path resolution behavior
future: {
v7_relativeSplatPath: true,
v7_startTransition: true,