Skip to content

Commit 4c5eb60

Browse files
Fix for release qa
1 parent d6f9eab commit 4c5eb60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/Settings/Language/Language.component.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,10 @@ class Language extends React.Component {
149149
this.setState({ moreLangDialog: false });
150150
}
151151

152-
handleTtsErrorDialogClose() {
152+
async handleTtsErrorDialogClose() {
153+
const { setTtsEngine } = this.props;
153154
this.setState({ openTtsEngineError: false });
155+
await setTtsEngine(this.props.ttsEngine.name);
154156
}
155157

156158
render() {

0 commit comments

Comments
 (0)