From 91cc78009cf57ad8f53e69d20aa974f4833e61b0 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Mon, 4 Jul 2022 12:51:44 +0530 Subject: chore: Use relative paths while importing from custom code --- src/stores/SettingsStore.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stores/SettingsStore.ts') 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'; import { getCurrentWindow } from '@electron/remote'; import { action, computed, observable, reaction } from 'mobx'; import localStorage from 'mobx-localstorage'; -import { Stores } from 'src/@types/stores.types'; -import { ApiInterface } from 'src/api'; -import { Actions } from 'src/actions/lib/actions'; +import { Stores } from '../@types/stores.types'; +import { ApiInterface } from '../api'; +import { Actions } from '../actions/lib/actions'; import { DEFAULT_APP_SETTINGS, FILE_SYSTEM_SETTINGS_TYPES, -- cgit v1.2.3-54-g00ecf