Skip to content

Commit 14c76a8

Browse files
authored
Merge pull request #3256 from GetStream/fix/waveform-animation-on-android
fix: disable progress seek animation on android as aac not supported
1 parent d06d32c commit 14c76a8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

package/src/components/ProgressControl/WaveProgressBar.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export const WaveProgressBar = React.memo(
110110
} = useTheme();
111111

112112
const pan = Gesture.Pan()
113+
.enabled(showProgressDrag)
113114
.maxPointers(1)
114115
.onStart((event) => {
115116
const currentProgress = (state.value + event.x) / fullWidth;

0 commit comments

Comments
 (0)