Skip to content

Commit 425d5df

Browse files
committed
chore(docs): docs prettier
1 parent 61c871c commit 425d5df

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/components/LogosMarquee/index.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,8 @@ export const LogosMarquee = () => {
4040
.sort(() => Math.random() - 0.5)
4141
.filter((_, i) => i < logoCount!)
4242
.map(([id, name]) => (
43-
<Logo providerId={id} name={name} scale={scale} key={id}
44-
/>
45-
)
46-
)}
43+
<Logo providerId={id} name={name} scale={scale} key={id} />
44+
))}
4745
</div>
4846
)
4947
}

docs/components/LogosMarquee/logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const Logo = ({ providerId: id, name, scale }) => {
1919
repeat: Infinity,
2020
repeatType: "loop",
2121
}}
22-
style={{
22+
style={{
2323
width: (scale ?? 60) * randomFloat(0.8, 1.2),
2424
}}
2525
>

0 commit comments

Comments
 (0)