From 9f80bb60b2da065a93d4feedbdea4c3de81b3a98 Mon Sep 17 00:00:00 2001 From: GreenAsJade Date: Thu, 28 Nov 2024 09:50:37 +1030 Subject: [PATCH] Reduce precision on votes-by-week graph --- src/views/User/VoteActivityGraph.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/User/VoteActivityGraph.tsx b/src/views/User/VoteActivityGraph.tsx index f8c8a47af3..22259e25ab 100644 --- a/src/views/User/VoteActivityGraph.tsx +++ b/src/views/User/VoteActivityGraph.tsx @@ -111,8 +111,8 @@ const VoteActivityGraph = ({ vote_data }: VoteActivityGraphProps) => { colors={({ id }) => line_colors[id as keyof typeof line_colors]} enableSlices="x" axisBottom={{ - format: "%d %b %g", - tickValues: "every 2 weeks", + format: "%b", + tickValues: "every month", }} xFormat="time:%Y-%m-%d" xScale={{