mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 12:28:50 +03:00
Add console log on unhandled error to track down rageshake
This commit is contained in:
parent
61d0021c8e
commit
0bb423fd5a
1 changed files with 3 additions and 2 deletions
|
@ -164,11 +164,11 @@ export default class VerificationPanel extends React.PureComponent {
|
|||
}
|
||||
|
||||
render() {
|
||||
const {member} = this.props;
|
||||
const {member, phase} = this.props;
|
||||
|
||||
const displayName = member.displayName || member.name || member.userId;
|
||||
|
||||
switch (this.props.phase) {
|
||||
switch (phase) {
|
||||
case PHASE_READY:
|
||||
return this.renderQRPhase();
|
||||
case PHASE_STARTED:
|
||||
|
@ -191,6 +191,7 @@ export default class VerificationPanel extends React.PureComponent {
|
|||
case PHASE_CANCELLED:
|
||||
return this.renderCancelledPhase();
|
||||
}
|
||||
console.error("VerificationPanel unhandled phase:", phase)
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue