mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 08:31:23 -05:00
Fix syntax error from merge
This commit is contained in:
parent
1326f71abe
commit
6eca07a413
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class ComposeComment extends React.Component {
|
|||
'setupMuteExpirationTimeout'
|
||||
]);
|
||||
const muteExpiresAtMs = this.props.muteStatus.muteExpiresAt ?
|
||||
this.props.muteStatus.muteExpiresAt * 1000 : 0, // convert to ms
|
||||
this.props.muteStatus.muteExpiresAt * 1000 : 0; // convert to ms
|
||||
this.state = {
|
||||
message: '',
|
||||
status: ComposeStatus.EDITING,
|
||||
|
|
Loading…
Reference in a new issue