From 317b883ec8f1bab091aa4682d53acf32577c3214 Mon Sep 17 00:00:00 2001 From: Biresh Biswas <90760974+Billa05@users.noreply.github.com> Date: Wed, 18 Oct 2023 01:33:57 +0530 Subject: [PATCH] fix rx.audio playing prop type: str to bool (#1986) --- reflex/components/libs/react_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/components/libs/react_player.py b/reflex/components/libs/react_player.py index 6a291dbf1..cb52337c5 100644 --- a/reflex/components/libs/react_player.py +++ b/reflex/components/libs/react_player.py @@ -21,7 +21,7 @@ class ReactPlayerComponent(NoSSRComponent): url: Var[str] # Set to true or false to pause or play the media - playing: Var[str] + playing: Var[bool] # Set to true or false to loop the media loop: Var[bool]