From 94abaa1dc7ffab42deb930c058bca9e2e9ca4c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Sun, 29 Dec 2024 14:42:04 +0100 Subject: [PATCH] fix: extensions page optional contributers --- src/index.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.jsx b/src/index.jsx index a80d7c1b..1efb8311 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -20,7 +20,9 @@ extensions.forEach((ext) => { if (meta) { Object.assign(ext, meta); } + if (!ext.contributors) ext.contributors = []; }); +console.log(extensions); const Gallery = ({ images }) => { const [activeIndex, setActiveIndex] = createSignal(0);