Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into PE-7363-rnp-chart
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Jan 8, 2025
2 parents 6c7050f + d0adcf2 commit 7b7e52b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/data-display/charts/RNPChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ export function RNPChart({
(point) => point.price >= costDetails.tokenCost,
)}
stroke="white"
strokeWidth={2}
dot={(props) => renderActiveDot(props)}
/>
<Line
Expand All @@ -241,7 +242,8 @@ export function RNPChart({
(point) => point.price <= costDetails.tokenCost,
)}
stroke="white"
strokeDasharray="6 6"
strokeWidth={2}
strokeDasharray="5 5"
dot={(props) => renderActiveDot(props)}
/>
</LineChart>
Expand Down

0 comments on commit 7b7e52b

Please sign in to comment.