@@ -411,10 +411,10 @@ const UserInformationCard_Individual = ({ formData, loadDataFun }) => { | |||||
: | : | ||||
<Stack direction="row"> | <Stack direction="row"> | ||||
<Typography variant="h5" mt={1}> | <Typography variant="h5" mt={1}> | ||||
{formik.values.identification.slice(0, 4)} | |||||
{formik.values.identification?.slice(0, 4)} | |||||
</Typography> | </Typography> | ||||
<Typography variant="h5" mt={1}> | <Typography variant="h5" mt={1}> | ||||
{showId ? formik.values.identification.slice(4) : "****"}{showId ? '(' + formik.values.checkDigit + ')' : null} | |||||
{showId ? formik.values.identification?.slice(4) : "****"}{showId ? '(' + formik.values.checkDigit?formik.values.checkDigit:"" + ')' : ""} | |||||
</Typography> | </Typography> | ||||
<IconButton | <IconButton | ||||
aria-label="toggle id visibility" | aria-label="toggle id visibility" | ||||
@@ -7,7 +7,7 @@ const MainLayout = Loadable(lazy(() => import('layout/MainLayout'))); | |||||
import {isGranted, isGrantedAny} from "auth/utils"; | import {isGranted, isGrantedAny} from "auth/utils"; | ||||
// import { isPasswordExpiry } from "utils/Utils"; | // import { isPasswordExpiry } from "utils/Utils"; | ||||
// render - dashboard | // render - dashboard | ||||
const DashboardDefault = Loadable(lazy(() => import('pages/dashboard/GLD'))); | |||||
const DashboardDefault = Loadable(lazy(() => import('pages/Dashboard/GLD'))); | |||||
const ApplicationDetail = Loadable(lazy(() => import('pages/PublicNotice/Details_GLD'))); | const ApplicationDetail = Loadable(lazy(() => import('pages/PublicNotice/Details_GLD'))); | ||||
const ApplicationSearch = Loadable(lazy(() => import('pages/PublicNotice/Search_GLD'))); | const ApplicationSearch = Loadable(lazy(() => import('pages/PublicNotice/Search_GLD'))); | ||||
const ApplicationMarkAsPaidSearch = Loadable(lazy(() => import('pages/PublicNotice/Search_Mark_As_Paid_GLD'))); | const ApplicationMarkAsPaidSearch = Loadable(lazy(() => import('pages/PublicNotice/Search_Mark_As_Paid_GLD'))); | ||||
@@ -7,7 +7,7 @@ const MainLayout = Loadable(lazy(() => import('layout/MainLayout'))); | |||||
// import { isPasswordExpiry } from "utils/Utils"; | // import { isPasswordExpiry } from "utils/Utils"; | ||||
// render - dashboard | // render - dashboard | ||||
const DashboardDefault = Loadable(lazy(() => import('pages/dashboard/Public'))); | |||||
const DashboardDefault = Loadable(lazy(() => import('pages/Dashboard/Public'))); | |||||
const ManageOrgUser = Loadable(lazy(() => import('pages/User/ManagePage_OrgPublic'))); | const ManageOrgUser = Loadable(lazy(() => import('pages/User/ManagePage_OrgPublic'))); | ||||
const PublicNotice = Loadable(lazy(() => import('pages/PublicNotice/ListPanel'))); | const PublicNotice = Loadable(lazy(() => import('pages/PublicNotice/ListPanel'))); | ||||
const PublicNoticeApplyForm = Loadable(lazy(() => import('pages/PublicNotice/ApplyForm'))); | const PublicNoticeApplyForm = Loadable(lazy(() => import('pages/PublicNotice/ApplyForm'))); | ||||