aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/SettingsStore.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-04 12:51:44 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-07-04 13:08:32 +0530
commit91cc78009cf57ad8f53e69d20aa974f4833e61b0 (patch)
tree10a4e397734d7ac1c70dd9acbe86108a5344ed7f /src/stores/SettingsStore.ts
parentDisable symlinks to build_id for rpm (diff)
downloadferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.tar.gz
ferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.tar.zst
ferdium-app-91cc78009cf57ad8f53e69d20aa974f4833e61b0.zip
chore: Use relative paths while importing from custom code
Diffstat (limited to 'src/stores/SettingsStore.ts')
-rw-r--r--src/stores/SettingsStore.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stores/SettingsStore.ts b/src/stores/SettingsStore.ts
index dabd7b099..0296ba0e7 100644
--- a/src/stores/SettingsStore.ts
+++ b/src/stores/SettingsStore.ts
@@ -2,9 +2,9 @@ import { ipcRenderer } from 'electron';
2import { getCurrentWindow } from '@electron/remote'; 2import { getCurrentWindow } from '@electron/remote';
3import { action, computed, observable, reaction } from 'mobx'; 3import { action, computed, observable, reaction } from 'mobx';
4import localStorage from 'mobx-localstorage'; 4import localStorage from 'mobx-localstorage';
5import { Stores } from 'src/@types/stores.types'; 5import { Stores } from '../@types/stores.types';
6import { ApiInterface } from 'src/api'; 6import { ApiInterface } from '../api';
7import { Actions } from 'src/actions/lib/actions'; 7import { Actions } from '../actions/lib/actions';
8import { 8import {
9 DEFAULT_APP_SETTINGS, 9 DEFAULT_APP_SETTINGS,
10 FILE_SYSTEM_SETTINGS_TYPES, 10 FILE_SYSTEM_SETTINGS_TYPES,