diff --git a/config/filters/index.js b/config/filters/index.js index 0c423efe..d2317026 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -32,7 +32,10 @@ export default { }, // watching - featuredWatching: (watching, count) => shuffleArray(watching).slice(0, count), + featuredWatching: (watching, count) => { + const data = [...watching] + return shuffleArray(data).slice(0, count) + }, // dates isoDateOnly: (date, separator) => { diff --git a/package-lock.json b/package-lock.json index 8745d500..73ffc0b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "19.5.16", + "version": "19.5.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "19.5.16", + "version": "19.5.17", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 048fad8d..3dea9540 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "19.5.16", + "version": "19.5.17", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {