Fix comments

This commit is contained in:
Travis Ralston 2021-03-16 23:01:37 -06:00
parent b5d32d92f3
commit dafa8786a1
3 changed files with 6 additions and 8 deletions

View file

@ -55,10 +55,10 @@ export default class VoiceRecordComposerTile extends React.PureComponent<IProps,
const recorder = new VoiceRecorder(MatrixClientPeg.get());
await recorder.start();
this.props.onRecording(true);
// TODO: Run through EQ component
recorder.rawData.onUpdate((frame) => {
console.log('@@ FRAME', frame);
});
// TODO: @@ TravisR: Run through EQ component
// recorder.rawData.onUpdate((frame) => {
// console.log('@@ FRAME', frame);
// });
this.setState({recorder});
};