Issue:
Intermittent bug causing a single data point to show as timestamp 1970-01-01, skewing the entire graph.
Example Screenshot:

Fix:
Filter out any data points dated before 2025-01-01 on the following:
FLP Yield Data page
Game Stats page
Starting Points in Code:
FLP Yield Data page:
|
.filter(d => d.amount > 0) // Only show positive yields |
Game Stats page:
|
const fetchData = async () => { |
Note:
Any timestamp before 2025 is considered irrelevant and should be excluded from graph rendering.
Let me know if you want help formatting this as a pull request description or commit message too.
Issue:
Intermittent bug causing a single data point to show as timestamp 1970-01-01, skewing the entire graph.
Example Screenshot:

Fix:
Filter out any data points dated before 2025-01-01 on the following:
FLP Yield Data page
Game Stats page
Starting Points in Code:
FLP Yield Data page:
stats/src/pages/FLPYield/FLPYield.tsx
Line 42 in 88a9d5f
Game Stats page:
stats/src/pages/Game/Game.tsx
Line 27 in 88a9d5f
Note:
Any timestamp before 2025 is considered irrelevant and should be excluded from graph rendering.
Let me know if you want help formatting this as a pull request description or commit message too.