diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 00000000..022a2b93
Binary files /dev/null and b/public/favicon.ico differ
diff --git a/public/favicon.svg b/public/favicon.svg
deleted file mode 100644
index 984d1ebe..00000000
--- a/public/favicon.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
diff --git a/src/front/Components/DesignSystem/Header/index.tsx b/src/front/Components/DesignSystem/Header/index.tsx
index addada55..4e5c17bc 100644
--- a/src/front/Components/DesignSystem/Header/index.tsx
+++ b/src/front/Components/DesignSystem/Header/index.tsx
@@ -54,7 +54,7 @@ export default function Header(props: IProps) {
<>
-
+
diff --git a/src/front/Components/LayoutTemplates/DefaultLayout.tsx b/src/front/Components/LayoutTemplates/DefaultLayout.tsx
index 322f5bd3..148fedf7 100644
--- a/src/front/Components/LayoutTemplates/DefaultLayout.tsx
+++ b/src/front/Components/LayoutTemplates/DefaultLayout.tsx
@@ -8,7 +8,7 @@ export const DefaultLayout = ({ children }: DefaultLayoutProps) => {
<>
LEcoffre
- {/* */}
+ {/* */}
{children}
diff --git a/src/front/Components/Layouts/Folder/FolderInformation/ClientView/index.tsx b/src/front/Components/Layouts/Folder/FolderInformation/ClientView/index.tsx
index 264db94d..3a02bd33 100644
--- a/src/front/Components/Layouts/Folder/FolderInformation/ClientView/index.tsx
+++ b/src/front/Components/Layouts/Folder/FolderInformation/ClientView/index.tsx
@@ -28,10 +28,17 @@ export default function ClientView(props: IProps) {
const customers: ICustomer[] = useMemo(
() =>
- folder?.customers?.map((customer) => ({
- id: customer.uid ?? "",
- ...customer,
- })) ?? [],
+ folder?.customers
+ ?.map((customer) => ({
+ id: customer.uid ?? "",
+ ...customer,
+ }))
+ .sort((a, b) => {
+ return a.documents &&
+ a.documents.filter((document) => document.document_status === EDocumentStatus.DEPOSITED).length > 0
+ ? -1
+ : 1;
+ }) ?? [],
[folder],
);
diff --git a/src/front/index.scss b/src/front/index.scss
index 3b8e1f7e..5b066837 100644
--- a/src/front/index.scss
+++ b/src/front/index.scss
@@ -46,13 +46,6 @@ a,
a:visited {
color: initial;
text-decoration: none !important;
- opacity: 1;
- transition: opacity 0.15s ease-in-out;
- will-change: opacity;
-}
-
-a:hover {
- opacity: 0.9;
}
.react-select__input-container {