We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af260a1 commit 0decdc8Copy full SHA for 0decdc8
src/pages/layer-2/index.tsx
@@ -70,7 +70,7 @@ export const getStaticProps = (async ({ locale }) => {
70
)
71
}
72
73
- return randomL2s.sort(() => 0.5 - Math.random()).slice(0, 9)
+ return randomL2s.sort(() => 0.5 - Math.random()).slice(0, 3)
74
75
76
const randomL2s = layer2Data.sort(() => 0.5 - Math.random()).slice(0, 9)
@@ -417,7 +417,7 @@ const Layer2Hub = ({
417
<div id="layer-2-cta" className="w-full px-8 py-9">
418
<div className="mx-auto flex max-w-[640px] flex-col gap-6 rounded bg-main-gradient p-8">
419
<div className="flex flex-col gap-6">
420
- {userRandomL2s.slice(0, 3).map((l2, idx) => {
+ {userRandomL2s.map((l2, idx) => {
421
return (
422
<div
423
key={idx}
0 commit comments