fix(site): add chromatic ignore to shimmer component (#22439)

The shimmer component has an infinitely repeating animation that causes
Chromatic snapshot diffs on every run. Adding `data-chromatic="ignore"`
to prevent false positives, consistent with how other animated
components in the codebase handle this (e.g. `Spinner`, `Alert`,
`SyntaxHighlighter`).

Co-authored-by: Coder <coder@users.noreply.github.com>
This commit is contained in:
Kyle Carberry
2026-02-28 15:17:04 -05:00
committed by GitHub
co-authored by Coder
parent c5619746d1
commit eec0b299e8
@@ -48,6 +48,7 @@ const ShimmerComponent = ({
return (
<MotionConfig reducedMotion="user">
<MotionComponent
data-chromatic="ignore"
animate={{ backgroundPosition: "0% center" }}
className={cn(
"relative inline-block bg-[length:250%_100%,auto] bg-clip-text text-transparent",