diff --git a/src/front/Components/DesignSystem/Alert/classes.module.scss b/src/front/Components/DesignSystem/Alert/classes.module.scss
index 96e78746..e800be15 100644
--- a/src/front/Components/DesignSystem/Alert/classes.module.scss
+++ b/src/front/Components/DesignSystem/Alert/classes.module.scss
@@ -32,6 +32,7 @@
display: flex;
padding: var(--spacing-1, 8px);
align-items: center;
+ align-self: flex-start;
border-radius: var(--alerts-badge-radius, 360px);
border: 1px solid var(--alerts-badge-border, rgba(0, 0, 0, 0));
diff --git a/src/front/Components/Layouts/Folder/FolderInformation/elements/AnchoringProcessingNeutral/index.tsx b/src/front/Components/Layouts/Folder/FolderInformation/elements/AnchoringProcessingInfo/index.tsx
similarity index 63%
rename from src/front/Components/Layouts/Folder/FolderInformation/elements/AnchoringProcessingNeutral/index.tsx
rename to src/front/Components/Layouts/Folder/FolderInformation/elements/AnchoringProcessingInfo/index.tsx
index b018d92f..599d4173 100644
--- a/src/front/Components/Layouts/Folder/FolderInformation/elements/AnchoringProcessingNeutral/index.tsx
+++ b/src/front/Components/Layouts/Folder/FolderInformation/elements/AnchoringProcessingInfo/index.tsx
@@ -1,11 +1,13 @@
import Alert, { EAlertVariant } from "@Front/Components/DesignSystem/Alert";
+import { ArrowPathIcon } from "@heroicons/react/24/outline";
-export default function AnchoringProcessingNeutral() {
+export default function AnchoringProcessingInfo() {
return (
}
fullWidth
/>
);
diff --git a/src/front/Components/Layouts/Folder/FolderInformation/index.tsx b/src/front/Components/Layouts/Folder/FolderInformation/index.tsx
index 8ec5ceaf..7dd580b0 100644
--- a/src/front/Components/Layouts/Folder/FolderInformation/index.tsx
+++ b/src/front/Components/Layouts/Folder/FolderInformation/index.tsx
@@ -13,13 +13,13 @@ import ClientView from "./ClientView";
import AnchoringAlertInfo from "./elements/AnchoringAlertInfo";
import AnchoringAlertSuccess from "./elements/AnchoringAlertSuccess";
import AnchoringModal from "./elements/AnchoringModal";
-import AnchoringProcessingNeutral from "./elements/AnchoringProcessingNeutral";
import ArchiveAlertWarning from "./elements/ArchiveAlertWarning";
import ArchiveModal from "./elements/ArchiveModal";
import DownloadAnchoringProofModal from "./elements/DownloadAnchoringProofModal";
import RequireAnchoringModal from "./elements/RequireAnchoringModal";
import InformationSection from "./InformationSection";
import NoClientView from "./NoClientView";
+import AnchoringProcessingInfo from "./elements/AnchoringProcessingInfo";
export enum AnchorStatus {
"VERIFIED_ON_CHAIN" = "VERIFIED_ON_CHAIN",
@@ -148,7 +148,7 @@ export default function FolderInformation(props: IProps) {
isArchived={isArchived}
/>
)}
- {!isArchived && anchorStatus === AnchorStatus.ANCHORING && }
+ {!isArchived && anchorStatus === AnchorStatus.ANCHORING && }
{isArchived && folderUid && (
)}