Skip to content

Commit

Permalink
update claim date (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamoskvin authored Jun 17, 2024
1 parent 324c96d commit 2edec7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Rewards/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ export default function Rewards() {
})
const rewardsResp = await fetch(STARKNET_REWARDS_API_URL)
const rewardsRespStr = await rewardsResp.text()
const rewardsRespStrClean = rewardsRespStr.replace(/\bNaN\b/g, "null")
const rewardsRespStrClean = rewardsRespStr.replace(/\bNaN\b/g, 'null')
const rewardsRespJson = JSON.parse(rewardsRespStrClean)

const jediRewards = rewardsRespJson.Jediswap_v1
Expand Down Expand Up @@ -706,7 +706,7 @@ export default function Rewards() {
<LiquidityWrapperCard>
<RowBetween>
<ClaimHeader>
<ClaimHeaderText>Next claim available on June 14</ClaimHeaderText>
<ClaimHeaderText>Next claim available on June 28</ClaimHeaderText>
</ClaimHeader>
</RowBetween>
<CardSection>
Expand Down

0 comments on commit 2edec7f

Please sign in to comment.