diff --git a/src/app/organisms/create-room/CreateRoom.jsx b/src/app/organisms/create-room/CreateRoom.jsx index 04b2faeb..611adb5a 100644 --- a/src/app/organisms/create-room/CreateRoom.jsx +++ b/src/app/organisms/create-room/CreateRoom.jsx @@ -43,6 +43,7 @@ function CreateRoomContent({ isSpace, parentId, onRequestClose }) { const [isValidAddress, setIsValidAddress] = useState(null); const [addressValue, setAddressValue] = useState(undefined); const [roleIndex, setRoleIndex] = useState(0); + const [roomType, setRoomType] = useState(0); const addressRef = useRef(null); @@ -75,6 +76,7 @@ function CreateRoomContent({ isSpace, parentId, onRequestClose }) { joinRule, alias: roomAlias, isEncrypted: isSpace || joinRule === 'public' ? false : isEncrypted, + roomType, powerLevel, isSpace, parentId, @@ -218,6 +220,17 @@ function CreateRoomContent({ isSpace, parentId, onRequestClose }) { Selecting Admin sets 100 power level whereas Founder sets 101. } /> + + } + content={Select the type of room.} + />