diff --git a/src/components/BarVisualizer.tsx b/src/components/BarVisualizer.tsx index 5a2bc33..69eae57 100644 --- a/src/components/BarVisualizer.tsx +++ b/src/components/BarVisualizer.tsx @@ -149,7 +149,7 @@ export const BarVisualizer = ({ let bars: React.ReactNode[] = []; magnitudes.forEach((value, index) => { let coerced = Math.min(opts.maxHeight, Math.max(opts.minHeight, value)); - let coercedPercent = Math.min(100, Math.max(0, coerced * 100 + 5)); + let coercedPercent = Math.min(100, Math.max(0, coerced * 100)); let opacity = opacityAnimations[index] ?? new Animated.Value(0.3); let barStyle = { opacity: opacity, @@ -160,11 +160,7 @@ export const BarVisualizer = ({ bars.push( ); }); @@ -177,9 +173,6 @@ const styles = StyleSheet.create({ alignItems: 'center', justifyContent: 'space-evenly', }, - volumeIndicator: { - borderRadius: 12, - }, }); export const useBarAnimator = (