Skip to content

Commit 4c375b4

Browse files
Merge pull request #5563 from nguyentrannhan/develop
Develop
2 parents 99db46a + 50be7d2 commit 4c375b4

File tree

1 file changed

+1
-1
lines changed
  • libs/components/src/lib/components/ChannelTopbar/TopBarComponents/PushToTalkButton

1 file changed

+1
-1
lines changed

libs/components/src/lib/components/ChannelTopbar/TopBarComponents/PushToTalkButton/PushToTalkButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const PushToTalkBtn: React.FC<IPushToTalkBtnProps> = ({ isLightMode }) =>
2222
const { isJoined, startJoinPTT, quitPTT } = usePushToTalk();
2323

2424
const shouldShowPtt = useMemo(() => {
25-
return isJoined === false || channelId === currentChannelId;
25+
return false; //isJoined === false || channelId === currentChannelId;
2626
}, [channelId, currentChannelId, isJoined]);
2727

2828
return (

0 commit comments

Comments
 (0)