Remove debugging

pull/21833/head
Travis Ralston 2021-08-03 12:57:16 -06:00
parent 7b565db02d
commit c4e6cc7973
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
}
let uploadIndicator;
if (this.state.recordingPhase === RecordingState.Uploading || true) {
if (this.state.recordingPhase === RecordingState.Uploading) {
uploadIndicator = <span className='mx_VoiceRecordComposerTile_uploadingState'>
<InlineSpinner w={16} h={16} />
</span>;