Skip to content

Commit 57c6d88

Browse files
chore: Ignore last built value on Chromatic (#1687)
1 parent 98c89f8 commit 57c6d88

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/components/WorkspaceStats/WorkspaceStats.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ export const WorkspaceStats: React.FC<WorkspaceStatsProps> = ({ workspace }) =>
5252
<div className={styles.statsDivider} />
5353
<div className={styles.statItem}>
5454
<span className={styles.statsLabel}>Last built</span>
55-
<span className={styles.statsValue}>{dayjs().to(dayjs(workspace.latest_build.created_at))}</span>
55+
<span className={styles.statsValue} data-chromatic="ignore">
56+
{dayjs().to(dayjs(workspace.latest_build.created_at))}
57+
</span>
5658
</div>
5759
</div>
5860
)

0 commit comments

Comments
 (0)