Quantizer bug fix

This commit is contained in:
Jake Archibald
2020-11-11 15:35:17 +00:00
parent 2d21406484
commit b38069695a

View File

@@ -87,7 +87,7 @@ export default class Options extends Component<Props, State> {
private onQuantizerOptionsChange = (opts: ProcessorOptions['quantize']) => {
this.props.onProcessorOptionsChange(
cleanMerge(this.props.processorState, 'quantizer', opts),
cleanMerge(this.props.processorState, 'quantize', opts),
);
};