From 07ecf5ffaa649f2a8f9ecc54ca3c324fede443d2 Mon Sep 17 00:00:00 2001 From: Peter Bull Hove Date: Thu, 4 Apr 2024 14:55:44 +0200 Subject: [PATCH] fix: better defaults --- web/src/Components/Bridging/Graphs/BridgeGraph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/Components/Bridging/Graphs/BridgeGraph.tsx b/web/src/Components/Bridging/Graphs/BridgeGraph.tsx index 2a62cda..de1a4a1 100644 --- a/web/src/Components/Bridging/Graphs/BridgeGraph.tsx +++ b/web/src/Components/Bridging/Graphs/BridgeGraph.tsx @@ -13,7 +13,7 @@ type BridgeGraphProps = { } export function BridgeGraph({ yAxis, graphData, sizeFractions, bridges }: BridgeGraphProps) { - const [particleFromPercentage, setParticleFromPercentage] = useState('30%') + const [particleFromPercentage, setParticleFromPercentage] = useState('0%') const [particleToPercentage, setParticleToPercentage] = useState('100%') const particleRange = useContext(ParticleSizeContext)