aboutsummaryrefslogtreecommitdiffstats
path: root/src/models/Service.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Service.ts')
-rw-r--r--src/models/Service.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/models/Service.ts b/src/models/Service.ts
index da9fa43dd..6d19f44f1 100644
--- a/src/models/Service.ts
+++ b/src/models/Service.ts
@@ -1,17 +1,17 @@
1import { join, basename } from 'node:path'; 1import { basename, join } from 'node:path';
2import { autorun, action, computed, makeObservable, observable } from 'mobx';
3import { ipcRenderer } from 'electron';
4import { webContents } from '@electron/remote'; 2import { webContents } from '@electron/remote';
5import ElectronWebView from 'react-electron-web-view'; 3import { ipcRenderer } from 'electron';
4import { action, autorun, computed, makeObservable, observable } from 'mobx';
5import type ElectronWebView from 'react-electron-web-view';
6 6
7import { v4 as uuidV4 } from 'uuid'; 7import { v4 as uuidV4 } from 'uuid';
8import { needsToken } from '../api/apiBase';
9import { DEFAULT_SERVICE_ORDER, DEFAULT_SERVICE_SETTINGS } from '../config';
8import { todosStore } from '../features/todos'; 10import { todosStore } from '../features/todos';
9import { isValidExternalURL, normalizedUrl } from '../helpers/url-helpers'; 11import { isValidExternalURL, normalizedUrl } from '../helpers/url-helpers';
10import UserAgent from './UserAgent';
11import { DEFAULT_SERVICE_ORDER, DEFAULT_SERVICE_SETTINGS } from '../config';
12import { ifUndefined } from '../jsUtils'; 12import { ifUndefined } from '../jsUtils';
13import { IRecipe } from './Recipe'; 13import type { IRecipe } from './Recipe';
14import { needsToken } from '../api/apiBase'; 14import UserAgent from './UserAgent';
15 15
16const debug = require('../preload-safe-debug')('Ferdium:Service'); 16const debug = require('../preload-safe-debug')('Ferdium:Service');
17 17