From 2b571bfd0f2742e4a1dbf2ba39040f5a52469bf4 Mon Sep 17 00:00:00 2001 From: beckerinj Date: Sun, 14 Aug 2022 03:07:26 -0400 Subject: [PATCH] change default loading size --- frontend/src/components/server/StatGraphs/Graphs.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/server/StatGraphs/Graphs.tsx b/frontend/src/components/server/StatGraphs/Graphs.tsx index a1021fcea..b3bec9be1 100644 --- a/frontend/src/components/server/StatGraphs/Graphs.tsx +++ b/frontend/src/components/server/StatGraphs/Graphs.tsx @@ -10,8 +10,8 @@ import { readableTimestamp } from "../../../util/helpers"; import Flex from "../../util/layout/Flex"; import Loading from "../../util/loading/Loading"; -const MOVEMENT = 50; -const NUM_PTS = 200; +const MOVEMENT = 1000; +const NUM_PTS = 2000; const SKIP = 1; const Graphs: Component<{ id: string }> = (p) => {