Skip to content

Commit

Permalink
fix challenge data
Browse files Browse the repository at this point in the history
  • Loading branch information
karlavasquez8 committed Apr 10, 2024
1 parent eb671bc commit ef23dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ const Home: NextPage = () => {
</div>
</div>
</div>
{lastChallenges.slice(3).map((challenge, index) => (
{lastChallenges.slice(1).map((challenge, index) => (
<ChallengeCard
key={index}
challenge={challenge.challenge}
title={challenge.title}
description={challenge.description}
imageUrl={challenge.imageUrl}
buttonText="QUEST"
buttonText="LOCK"
onButtonClick={() => {}}
end={challenge.end || false}
border={challenge.border !== undefined ? challenge.border : true}
Expand Down

0 comments on commit ef23dfb

Please sign in to comment.