aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/xtext
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/xtext')
-rw-r--r--subprojects/frontend/src/xtext/OccurrencesService.ts2
-rw-r--r--subprojects/frontend/src/xtext/webSocketMachine.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/subprojects/frontend/src/xtext/OccurrencesService.ts b/subprojects/frontend/src/xtext/OccurrencesService.ts
index 248a9a87..fc72ead2 100644
--- a/subprojects/frontend/src/xtext/OccurrencesService.ts
+++ b/subprojects/frontend/src/xtext/OccurrencesService.ts
@@ -1,4 +1,4 @@
1import { Transaction } from '@codemirror/state'; 1import type { Transaction } from '@codemirror/state';
2import { debounce } from 'lodash-es'; 2import { debounce } from 'lodash-es';
3import ms from 'ms'; 3import ms from 'ms';
4 4
diff --git a/subprojects/frontend/src/xtext/webSocketMachine.ts b/subprojects/frontend/src/xtext/webSocketMachine.ts
index 5f6bc604..216ed86a 100644
--- a/subprojects/frontend/src/xtext/webSocketMachine.ts
+++ b/subprojects/frontend/src/xtext/webSocketMachine.ts
@@ -205,7 +205,7 @@ export default createMachine(
205 ERROR_WAIT_TIME: ({ errors: { length: retryCount } }) => { 205 ERROR_WAIT_TIME: ({ errors: { length: retryCount } }) => {
206 const { length } = ERROR_WAIT_TIMES; 206 const { length } = ERROR_WAIT_TIMES;
207 const index = retryCount < length ? retryCount : length - 1; 207 const index = retryCount < length ? retryCount : length - 1;
208 return ERROR_WAIT_TIMES[index]; 208 return ERROR_WAIT_TIMES[index] ?? 0;
209 }, 209 },
210 }, 210 },
211 actions: { 211 actions: {