We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7212a77 commit 84d02abCopy full SHA for 84d02ab
1 file changed
src/components/BarVisualizer.tsx
@@ -149,7 +149,7 @@ export const BarVisualizer = ({
149
let bars: React.ReactNode[] = [];
150
magnitudes.forEach((value, index) => {
151
let coerced = Math.min(opts.maxHeight, Math.max(opts.minHeight, value));
152
- let coercedPercent = Math.min(100, Math.max(0, coerced * 100 + 5));
+ let coercedPercent = Math.min(100, Math.max(0, coerced * 100));
153
let opacity = opacityAnimations[index] ?? new Animated.Value(0.3);
154
let barStyle = {
155
opacity: opacity,
0 commit comments