From f87a7938c6941c69915477fcf5f08c54a2635597 Mon Sep 17 00:00:00 2001 From: YangJH Date: Sat, 11 May 2024 03:38:34 +0900 Subject: [PATCH] fix(js): fix onPlaybackStateChanged callback (#3753) --- src/Video.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Video.tsx b/src/Video.tsx index f8552476..7cdbc211 100644 --- a/src/Video.tsx +++ b/src/Video.tsx @@ -549,7 +549,7 @@ const Video = forwardRef( onVideoEnd={onEnd} onVideoBuffer={onBuffer ? onVideoBuffer : undefined} onVideoPlaybackStateChanged={ - onPlaybackRateChange ? onVideoPlaybackStateChanged : undefined + onPlaybackStateChanged ? onVideoPlaybackStateChanged : undefined } onVideoBandwidthUpdate={ onBandwidthUpdate ? _onBandwidthUpdate : undefined