Skip to content

Commit ca1374d

Browse files
style: format code with Prettier and StandardJS
This commit fixes the style issues introduced in f3f5e09 according to the output from Prettier and StandardJS. Details: None
1 parent f3f5e09 commit ca1374d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/stateless/MouseTrail/index.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const ImageMouseTrail = ({
88
maxNumberOfImages = 5,
99
imgClass = 'w-40 h-48',
1010
distance = 20,
11-
fadeAnimation = false,
11+
fadeAnimation = false
1212
}) => {
1313
const containerRef = useRef(null)
1414
const refs = useRef(items.map(() => createRef()))
@@ -71,14 +71,14 @@ const ImageMouseTrail = ({
7171
imgClass
7272
)}
7373
data-index={index}
74-
data-status="inactive"
74+
data-status='inactive'
7575
src={item}
7676
alt={`image-${index}`}
7777
ref={refs.current[index]}
7878
/>
7979
</>
8080
))}
81-
<article className="relative z-40">{children}</article>
81+
<article className='relative z-40'>{children}</article>
8282
</section>
8383
)
8484
}

0 commit comments

Comments
 (0)