Skip to content

Commit

Permalink
fix: adapt example range after graph data has been modified
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispader committed Jan 23, 2023
1 parent 64345a4 commit cd16d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/src/screens/GraphPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function GraphPage() {
return {
x: {
min: points[0]!.date,
max: new Date(highestDate.getTime() + 30),
max: new Date(highestDate.getTime() + 50 * 1000 * 60 * 60 * 24),
},
y: {
min: -200,
Expand Down

0 comments on commit cd16d26

Please sign in to comment.