Skip to content

Commit

Permalink
Fix for release qa
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbedouret committed Apr 3, 2021
1 parent d6f9eab commit 4c5eb60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Settings/Language/Language.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,10 @@ class Language extends React.Component {
this.setState({ moreLangDialog: false });
}

handleTtsErrorDialogClose() {
async handleTtsErrorDialogClose() {
const { setTtsEngine } = this.props;
this.setState({ openTtsEngineError: false });
await setTtsEngine(this.props.ttsEngine.name);
}

render() {
Expand Down

0 comments on commit 4c5eb60

Please sign in to comment.