This commit is contained in:
Arjun Patel
2026-06-11 10:04:59 -07:00
parent 8ed8e2cccb
commit ba82729f27
@@ -133,13 +133,7 @@ export function CenteredWaveform({
const y = (height - h) / 2;
drawCtx.roundRect(centerX + k * stride, y, barWidth, h, barWidth / 2);
if (k > 0) {
drawCtx.roundRect(
centerX - k * stride,
y,
barWidth,
h,
barWidth / 2,
);
drawCtx.roundRect(centerX - k * stride, y, barWidth, h, barWidth / 2);
}
}
drawCtx.fill();