diff --git a/src/features/admin/components/AdminHeader.js b/src/features/admin/components/AdminHeader.js index 7691428..d70a509 100644 --- a/src/features/admin/components/AdminHeader.js +++ b/src/features/admin/components/AdminHeader.js @@ -9,11 +9,6 @@ const AdminHeader = ({ title, description, backHref, backLabel = '← Retour', a return (
- {backHref && ( - - )}

{title}

{description && ( @@ -21,7 +16,14 @@ const AdminHeader = ({ title, description, backHref, backLabel = '← Retour', a )}
- {action} +
+ {backHref && ( + + )} + {action} +
); };