Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
fix: remove random channel from default channel list
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Feb 16, 2020
1 parent 3ce0e81 commit 6d34108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Chat/Twilio/TwilioChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const TwilioChat = ({
{ channel: Channel; client: Client; token: string } | undefined
>()
const [joinedChannels, setJoinedChannels] = useState<string[]>([
...new Set(['general', 'random', context]),
...new Set(['general', context]),
])

const connect = async (context: string) => {
Expand Down

0 comments on commit 6d34108

Please sign in to comment.