aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/webControls/containers/WebControlsScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/webControls/containers/WebControlsScreen.tsx')
-rw-r--r--src/features/webControls/containers/WebControlsScreen.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/features/webControls/containers/WebControlsScreen.tsx b/src/features/webControls/containers/WebControlsScreen.tsx
index f6f1cddb8..b492264bf 100644
--- a/src/features/webControls/containers/WebControlsScreen.tsx
+++ b/src/features/webControls/containers/WebControlsScreen.tsx
@@ -1,17 +1,17 @@
1import { Component, ReactElement } from 'react';
2import { observer, inject } from 'mobx-react';
3import { 1import {
4 autorun, 2 type IReactionDisposer,
5 action, 3 action,
4 autorun,
6 makeObservable, 5 makeObservable,
7 observable, 6 observable,
8 IReactionDisposer,
9} from 'mobx'; 7} from 'mobx';
10import ElectronWebView from 'react-electron-web-view'; 8import { inject, observer } from 'mobx-react';
11import WebControls from '../components/WebControls'; 9import { Component, type ReactElement } from 'react';
12import Service from '../../../models/Service'; 10import type ElectronWebView from 'react-electron-web-view';
11import type { StoresProps } from '../../../@types/ferdium-components.types';
13import { SEARCH_ENGINE_URLS } from '../../../config'; 12import { SEARCH_ENGINE_URLS } from '../../../config';
14import { StoresProps } from '../../../@types/ferdium-components.types'; 13import type Service from '../../../models/Service';
14import WebControls from '../components/WebControls';
15 15
16const URL_EVENTS = [ 16const URL_EVENTS = [
17 'load-commit', 17 'load-commit',