chore(site): ignore deletion date on chromatic (#11372)

This commit is contained in:
Bruno Quaresma
2024-01-02 18:17:24 +00:00
committed by GitHub
parent a1341ee9ac
commit 62a20e86fd
@@ -185,7 +185,10 @@ export const WorkspaceTopbar = (props: WorkspaceProps) => {
title="Schedule settings"
css={{ color: "inherit" }}
>
Deletion on {new Date(workspace.deleting_at!).toLocaleString()}
Deletion on{" "}
<span data-chromatic="ignore">
{new Date(workspace.deleting_at!).toLocaleString()}
</span>
</Link>
</TopbarData>
)}