This commit is contained in:
Malai Raja
2023-12-30 18:29:42 +05:30
parent 51e4ea978f
commit 3ce0086e3c
12 changed files with 2316 additions and 150 deletions

View File

@@ -173,9 +173,9 @@ const navigate = useNavigate()
/>
</ListItemButton> */}
<ListItemButton
selected={location.pathname === '/staff/create'}
selected={location.pathname === '/customers/create'}
onClick={() => {
navigate('/clients/create')
navigate('/customers/create')
handleClickAway()
}} >
<ListItemText
@@ -184,7 +184,7 @@ const navigate = useNavigate()
<ListItemIcon sx={{ mr: 1, fontSize: '20px' }}>
<UserOutlined />
</ListItemIcon>
<Typography color="textPrimary">Create Client</Typography>
<Typography color="textPrimary">Create Customer</Typography>
</Grid>
}