linter issues
Some checks failed
Lint / Lint and Typecheck (push) Failing after 27s

This commit is contained in:
2025-11-15 16:43:44 +01:00
parent fe4783ae97
commit 8006a65e88
4 changed files with 10 additions and 10 deletions

View File

@@ -124,7 +124,7 @@ export default function MultiIconPattern({ opacity = 0.2, spacing = 160 }) {
for (let x = 0; x < columns; x++) {
// Pick a random icon component from the array
const randomIndex = Math.floor(Math.random() * iconComponents.length);
const IconComponent = iconComponents[randomIndex]!;
const IconComponent = iconComponents[randomIndex];
// Slightly randomize size and position for more organic feel
const size = 28 + Math.floor(Math.random() * 8);