From 10e5021cc130a5dc9b7c798c0e43d3041f12b54a Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 24 Jul 2024 16:50:00 +0200 Subject: [PATCH] change(ui): summary ai toggle --- .../Session/Player/MobilePlayer/MobileControls.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Session/Player/MobilePlayer/MobileControls.tsx b/frontend/app/components/Session/Player/MobilePlayer/MobileControls.tsx index 8080d044a..31de09d1c 100644 --- a/frontend/app/components/Session/Player/MobilePlayer/MobileControls.tsx +++ b/frontend/app/components/Session/Player/MobilePlayer/MobileControls.tsx @@ -169,10 +169,10 @@ interface DevtoolsButtonsProps { bottomBlock: number; } -function DevtoolsButtons({ +const DevtoolsButtons = observer(({ toggleBottomTools, bottomBlock, -}: DevtoolsButtonsProps) { +}: DevtoolsButtonsProps) => { const { aiSummaryStore } = useStore(); const { store, player } = React.useContext(MobilePlayerContext); @@ -277,7 +277,7 @@ function DevtoolsButtons({ /> ); -} +}) const ControlPlayer = observer(Controls);