@naviedu/room-platform-react 0.0.58 → 0.0.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +1 -2
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -27837,10 +27837,9 @@ function RoomPlatformPrivateRoomStatusBanner() {
|
|
|
27837
27837
|
}));
|
|
27838
27838
|
var pending = acceptPending || declinePending || privateRoomState.isAcceptingPrivateRoom;
|
|
27839
27839
|
var roomPlatformToast = useRoomPlatformToast();
|
|
27840
|
-
if (!(privateRoomState.privateRoomStatusBanner && !privateRoomState.canMountPrivateRoom)) return null;
|
|
27841
27840
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
27842
27841
|
children: [
|
|
27843
|
-
/*#__PURE__*/ jsx(RoomPlatformPrivateRoomStatusBannerContent, _object_spread$4({}, privateRoomState.privateRoomStatusBanner)),
|
|
27842
|
+
privateRoomState.privateRoomStatusBanner && !privateRoomState.canMountPrivateRoom ? /*#__PURE__*/ jsx(RoomPlatformPrivateRoomStatusBannerContent, _object_spread$4({}, privateRoomState.privateRoomStatusBanner)) : null,
|
|
27844
27843
|
/*#__PURE__*/ jsx(AlertDialog, {
|
|
27845
27844
|
open: privateRoomState.hasIncomingPrivateRoom,
|
|
27846
27845
|
children: /*#__PURE__*/ jsxs(AlertDialogContent, {
|