Skip to content

Commit 9982c24

Browse files
authored
Promote breakout rooms feature to beta (#5069)
* Promote breakout rooms feature to beta * breakout room banner icon fixes
1 parent 192eed2 commit 9982c24

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

common/config/babel/features.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ module.exports = {
2121
"in-progress-beta-feature-demo",
2222
// feature for adding JS helpers to the UI library API
2323
"composite-js-helpers",
24-
// feature for breakout rooms
25-
"breakout-rooms",
2624
// Feature for remote UFD
2725
"remote-ufd",
2826
// Feature for showing dtmp dialer by default
@@ -84,7 +82,9 @@ module.exports = {
8482
// Feature to support file sharing in ACS chats
8583
"file-sharing-acs",
8684
// Soft Mute feature for ACS calls and Interop calls
87-
"soft-mute"
85+
"soft-mute",
86+
// feature for breakout rooms
87+
"breakout-rooms"
8888
],
8989
stable: [
9090
// Demo feature. Used in live-documentation of conditional compilation.

packages/react-composites/src/composites/CallComposite/components/BreakoutRoomsBanner.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const BreakoutRoomsBanner = (props: {
5252
primaryButtonLabel: locale.strings.call.joinBreakoutRoomBannerButtonLabel
5353
}}
5454
onClickButton={() => assignedBreakoutRoom.join()}
55-
iconProps={{ iconName: 'DoorArrowRight' }}
55+
iconProps={{ iconName: 'NotificationBarBreakoutRoomPromptJoin' }}
5656
primaryButton
5757
/>
5858
</Stack>
@@ -66,7 +66,7 @@ export const BreakoutRoomsBanner = (props: {
6666
primaryButtonLabel: locale.strings.call.returnFromBreakoutRoomBannerButtonLabel
6767
}}
6868
onClickButton={() => adapter.returnFromBreakoutRoom()}
69-
iconProps={{ iconName: 'DoorArrowLeft' }}
69+
iconProps={{ iconName: 'NotificationBarBreakoutRoomClosingSoon' }}
7070
/>
7171
</Stack>
7272
);

0 commit comments

Comments
 (0)