Update propTypes and remove todo

This commit is contained in:
Michael Telatynski 2020-01-28 17:14:48 +00:00
parent c93b080434
commit 58df4127d3
2 changed files with 5 additions and 3 deletions

View file

@ -14,7 +14,8 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import React, {useCallback, useEffect, useState} from 'react'; import React, {useCallback, useEffect, useState} from "react";
import PropTypes from "prop-types";
import EncryptionInfo from "./EncryptionInfo"; import EncryptionInfo from "./EncryptionInfo";
import VerificationPanel from "./VerificationPanel"; import VerificationPanel from "./VerificationPanel";
@ -85,7 +86,9 @@ const EncryptionPanel = ({verificationRequest, member, onClose}) => {
} }
}; };
EncryptionPanel.propTypes = { EncryptionPanel.propTypes = {
member: PropTypes.object.isRequired,
onClose: PropTypes.func.isRequired,
verificationRequest: PropTypes.object,
}; };
export default EncryptionPanel; export default EncryptionPanel;

View file

@ -39,7 +39,6 @@ export default class VerificationPanel extends React.PureComponent {
renderQRPhase(pending) { renderQRPhase(pending) {
const {member, request} = this.props; const {member, request} = this.props;
// TODO change the button into a spinner when on click
const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
let button; let button;