chore: Ignore last built value on Chromatic (#1687)

This commit is contained in:
Bruno Quaresma
2022-05-23 20:42:05 +00:00
committed by GitHub
parent 98c89f80b0
commit 57c6d887a1
@@ -52,7 +52,9 @@ export const WorkspaceStats: React.FC<WorkspaceStatsProps> = ({ workspace }) =>
<div className={styles.statsDivider} />
<div className={styles.statItem}>
<span className={styles.statsLabel}>Last built</span>
<span className={styles.statsValue}>{dayjs().to(dayjs(workspace.latest_build.created_at))}</span>
<span className={styles.statsValue} data-chromatic="ignore">
{dayjs().to(dayjs(workspace.latest_build.created_at))}
</span>
</div>
</div>
)