Skip to content

Commit

Permalink
fix: remove export for selectHideLocalPeer
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 committed Aug 11, 2023
1 parent b925425 commit 36325cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/core/selectors/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const selectPeerCount = createSelector([selectIsConnectedToRoom, selectRo
* Select a boolean flag denoting whether to hide local peer.
* When this is true, `selectPeers` skips local peer.
*/
export const selectHideLocalPeer = (store: HMSStore): boolean => store.hideLocalPeer;
const selectHideLocalPeer = (store: HMSStore): boolean => store.hideLocalPeer;

/**
* Select an array of peers(remote peers and your local peer) present in the room.
Expand Down

0 comments on commit 36325cc

Please sign in to comment.