Skip to content

Commit 2c15c61

Browse files
committed
Fix formatting for prettier
1 parent 2a0ee2e commit 2c15c61

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ts/a11y/speech.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,10 @@ export function SpeechMathDocumentMixin<
276276
public attachSpeech(): SpeechMathDocument<N, T, D> {
277277
if (!this.processed.isSet('attach-speech')) {
278278
const options = this.options;
279-
if (options.enableEnrichment && (options.enableSpeech || options.enableBraille)) {
279+
if (
280+
options.enableEnrichment &&
281+
(options.enableSpeech || options.enableBraille)
282+
) {
280283
this.getWebworker();
281284
for (const math of this.math) {
282285
(math as SpeechMathItem<N, T, D>).attachSpeech(this);

0 commit comments

Comments
 (0)