From e8d0fc1cc00f6a24b8d928a43e579a2d5a6135d7 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 3 May 2024 07:13:44 -0700 Subject: [PATCH] chore: slice, never splice --- config/filters/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index 0f4bf77e..aaa52c1e 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -59,9 +59,8 @@ export default { // posts filterByPostType: (posts, postType) => { - const postData = [...posts] - if (postType === 'featured') return postData.reverse().filter(post => post.data.featured === true).splice(0, 3) - return postData.splice(0, 5) + if (postType === 'featured') return posts.filter(post => post.data.featured === true).splice(0, 3) + return posts.slice(0, 5) }, truncateByWordCount: (text, wordCount) => { const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/);