fix: return of the shuffled clone(s)

This commit is contained in:
Cory Dransfeldt 2024-06-20 15:38:42 -07:00
parent 9ca85e7351
commit 057d5f852e
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View file

@ -32,7 +32,10 @@ export default {
}, },
// watching // watching
featuredWatching: (watching, count) => shuffleArray(watching).slice(0, count), featuredWatching: (watching, count) => {
const data = [...watching]
return shuffleArray(data).slice(0, count)
},
// dates // dates
isoDateOnly: (date, separator) => { isoDateOnly: (date, separator) => {

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.16", "version": "19.5.17",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.16", "version": "19.5.17",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.5.16", "version": "19.5.17",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {