mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 18:17:47 +00:00
12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Selector for retrieving the disabled sounds array.
|
|
*
|
|
* @param {Object} state - The Redux state.
|
|
* @returns {Array<string>} - The disabled sound id's array.
|
|
*/
|
|
export function getDisabledSounds(state: Object) {
|
|
return state['features/base/config'].disabledSounds || [];
|
|
}
|