Skip to content

Commit

Permalink
fix: better defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
pbullhove committed Apr 4, 2024
1 parent a811494 commit 07ecf5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/Components/Bridging/Graphs/BridgeGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type BridgeGraphProps = {
}

export function BridgeGraph({ yAxis, graphData, sizeFractions, bridges }: BridgeGraphProps) {
const [particleFromPercentage, setParticleFromPercentage] = useState<string>('30%')
const [particleFromPercentage, setParticleFromPercentage] = useState<string>('0%')
const [particleToPercentage, setParticleToPercentage] = useState<string>('100%')
const particleRange = useContext(ParticleSizeContext)

Expand Down

0 comments on commit 07ecf5f

Please sign in to comment.