Commit 5d716c73 authored by fisherdaddy's avatar fisherdaddy

fix: adjust pricing chart bar height scaling

parent d191ee7f
......@@ -28,7 +28,7 @@ const ChartLegend = ({ onLegendClick, highlightedBarTypes }) => {
const ChartBar = ({ price, type, maxPrice, highlighted }) => {
const getBarHeight = () => {
return (price / maxPrice) * 300;
return (price / maxPrice) * 200;
};
return (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment