From fd04f248c43e645eb95ef9aed759083b09392e84 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 1 Apr 2020 09:42:24 +0200 Subject: [PATCH] fix proptype typo --- src/components/views/elements/crypto/VerificationQRCode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/elements/crypto/VerificationQRCode.js b/src/components/views/elements/crypto/VerificationQRCode.js index 5848107b61..08cd0c772e 100644 --- a/src/components/views/elements/crypto/VerificationQRCode.js +++ b/src/components/views/elements/crypto/VerificationQRCode.js @@ -23,7 +23,7 @@ import * as QRCode from "qrcode"; @replaceableComponent("views.elements.crypto.VerificationQRCode") export default class VerificationQRCode extends React.PureComponent { static propTypes = { - qrCodeData: PropTypes.Object.isRequired, + qrCodeData: PropTypes.object.isRequired, }; constructor(props) {