Skip to content

Commit

Permalink
put bar width back to normal
Browse files Browse the repository at this point in the history
  • Loading branch information
solderq35 committed Apr 10, 2024
1 parent 49cdf2f commit 59629d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/barChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function BarChartScreen({ drillData, drillInfo }) {
const { width } = useWindowDimensions();
const [selected, setSelected] = useState(0);

const barWidth = 10; // temporary for android testing, remove before merge
const barWidth = 50;

const halfScreenCompensation = width / 2 - barWidth / 2;
const chartWidth = halfScreenCompensation * 2 + data.length * barWidth;
Expand Down

0 comments on commit 59629d1

Please sign in to comment.