From 847892099de1cc47d7d8a10fa22d073dcf78c5d5 Mon Sep 17 00:00:00 2001 From: Shoaibdev7 Date: Thu, 5 Sep 2024 11:27:52 -0700 Subject: [PATCH] fix(audio-section): hide audio en section --- src/components/App/SideBar/SelectedNodeView/Default/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/App/SideBar/SelectedNodeView/Default/index.tsx b/src/components/App/SideBar/SelectedNodeView/Default/index.tsx index aced1a0fb..62c216eef 100644 --- a/src/components/App/SideBar/SelectedNodeView/Default/index.tsx +++ b/src/components/App/SideBar/SelectedNodeView/Default/index.tsx @@ -118,7 +118,7 @@ const NodeDetail = ({ label, value, hasAudio, isPlaying, togglePlay }: Props) => const isLong = (value as string).length > 140 const searchTerm = useAppStore((s) => s.currentSearch) - if (!value) { + if (!value || label === 'Audio EN') { return null }