Skip to content

Commit 5f4cbcc

Browse files
committed
Remove sound sample rate indicator
It reflects the sample rate of your computer, not the sound, so it is misleading at best.
1 parent e5862fc commit 5f4cbcc

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/components/sound-editor/sound-editor.jsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,6 @@ const SoundEditor = props => (
361361
{formatDuration(props.playhead, props.trimStart, props.trimEnd, props.duration)}
362362
</div>
363363
<div className={styles.advancedInfo}>
364-
{props.sampleRate}
365-
{'Hz '}
366364
{props.isStereo ? (
367365
<FormattedMessage
368366
defaultMessage="Stereo"
@@ -405,7 +403,6 @@ SoundEditor.propTypes = {
405403
isStereo: PropTypes.bool.isRequired,
406404
duration: PropTypes.number.isRequired,
407405
size: PropTypes.number.isRequired,
408-
sampleRate: PropTypes.number.isRequired,
409406
canPaste: PropTypes.bool.isRequired,
410407
canRedo: PropTypes.bool.isRequired,
411408
canUndo: PropTypes.bool.isRequired,

src/containers/sound-editor.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,6 @@ class SoundEditor extends React.Component {
441441
isStereo={this.props.isStereo}
442442
duration={this.props.duration}
443443
size={this.props.size}
444-
sampleRate={this.props.sampleRate}
445444
canPaste={this.state.copyBuffer !== null}
446445
canRedo={this.redoStack.length > 0}
447446
canUndo={this.undoStack.length > 0}

0 commit comments

Comments
 (0)