Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elhoucine committed Jul 10, 2024
1 parent 1ccf061 commit ec05b4e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/pages/admin/newportal/manage/users/edit/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const EditUser = () => {
};

return (
<div className="admin--container">
<div>
<Breadcrumbs separator={<NavigateNextIcon fontSize="large" color="primary" />} aria-label="breadcrumb" style={{ marginBottom: '1rem' }}>
<Link href="/admin/newportal/manage/users" passHref>
<MaterialLink href="/admin/newportal/manage/users">
Expand Down Expand Up @@ -237,7 +237,7 @@ const EditUser = () => {
/>
<div className="text-center" style={{ margin: '2rem 0 1rem 0' }}>
<Button color="primary" variant="contained" type="submit">
{"Modifier l'utilisateur"}
{'Enregistrer'}
</Button>
</div>
</form>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/admin/newportal/manage/users/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const NewUser = () => {
};

return (
<div className="admin--container">
<div>
<Breadcrumbs separator={<NavigateNextIcon fontSize="large" color="primary" />} aria-label="breadcrumb" style={{ marginBottom: '1rem' }}>
<Link href="/admin/newportal/manage/users" passHref>
<MaterialLink href="/admin/newportal/manage/users">
Expand Down Expand Up @@ -220,7 +220,7 @@ const NewUser = () => {
/>
<div className="text-center" style={{ margin: '2rem 0 1rem 0' }}>
<Button color="primary" variant="contained" type="submit">
{"Ajouter l'utilisateur !"}
{'Ajouter!'}
</Button>
</div>
</form>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/admin/newportal/manage/villages/edit/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const EditVillage = () => {
};

return (
<div className="admin--container">
<div>
<Breadcrumbs separator={<NavigateNextIcon fontSize="large" color="primary" />} aria-label="breadcrumb" style={{ marginBottom: '1rem' }}>
<Link href="/admin/newportal/manage/villages" passHref>
<MaterialLink href="/admin/newportal/manage/villages">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/admin/newportal/manage/villages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Villages = () => {
);

return (
<div style={{ overflow: 'auto' }}>
<div>
<Link href="/admin/newportal/manage">
<div style={{ cursor: 'pointer', display: 'flex', alignItems: 'center', marginBottom: '1rem' }}>
<BackArrow />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/admin/newportal/manage/villages/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const NewVillage = () => {
};

return (
<div className="admin--container">
<div>
<Breadcrumbs separator={<NavigateNextIcon fontSize="large" color="primary" />} aria-label="breadcrumb" style={{ marginBottom: '1rem' }}>
<Link href="/admin/newportal/manage/villages" passHref>
<MaterialLink href="/admin/newportal/manage/villages">
Expand Down

0 comments on commit ec05b4e

Please sign in to comment.