Remove debugging

This commit is contained in:
Travis Ralston 2021-08-03 12:57:16 -06:00
parent 7b565db02d
commit c4e6cc7973

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>;