Skip to content

Commit

Permalink
Merge pull request #1 from CompartiMOSS/hotfix/n47
Browse files Browse the repository at this point in the history
remove lodash sampleSize
  • Loading branch information
adiazcan authored Mar 8, 2021
2 parents 25e1f0e + a9d5e54 commit b0e8edb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/view-articles-random.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const StyledArticles = styled.ul`
`;

const ViewArticlesRandom = ({...props}) => {
const topArticles = _.sampleSize(props.articles.edges, 30)
const topArticles = props.articles.edges; //_.sampleSize(props.articles.edges, 30)

return (
<section>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/revistas/numero-47/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Número 47 - Marzo 2020
title: Número 47 - Marzo 2021
slug: /revistas/numero-47/
date: 2021-03-01
magazine: 47
Expand Down

0 comments on commit b0e8edb

Please sign in to comment.