1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Merge pull request #6560 from matrix-org/palid/fix/18384

Fix [object Object] in Widget Permissions
This commit is contained in:
Dariusz Niemczyk
2021-08-06 13:59:14 +02:00
committed by GitHub

View File

@@ -62,10 +62,10 @@ export default class AppPermission extends React.Component<IProps, IState> {
// Set all this into the initial state
this.state = {
...urlInfo,
roomMember,
isWrapped: null,
widgetDomain: null,
isWrapped: null,
roomMember,
...urlInfo,
};
}