Skip to content

Commit

Permalink
fix: removed children from props passed to Players in LeftTabStrip
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 55cfd9d70ed6f80038ac16c6157f939accff85a4
  • Loading branch information
abbas-nazar authored and actions-user committed Oct 17, 2024
1 parent ecbbceb commit 6d49934
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,8 @@ Help
)}
players={{
render: (_props) => {
return <Players {..._props} studioCtx={studioCtx} />;
const { children, ...otherProps } = _props;
return <Players {...otherProps} studioCtx={studioCtx} />;
},
}}
avatar={{
Expand Down

0 comments on commit 6d49934

Please sign in to comment.