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/UserStore.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stores/UserStore.ts') diff --git a/src/stores/UserStore.ts b/src/stores/UserStore.ts index 0827f8196..b9c3c7576 100644 --- a/src/stores/UserStore.ts +++ b/src/stores/UserStore.ts @@ -4,9 +4,9 @@ import jwt from 'jsonwebtoken'; import localStorage from 'mobx-localstorage'; import { ipcRenderer } from 'electron'; -import { ApiInterface } from 'src/api'; -import { Actions } from 'src/actions/lib/actions'; -import { Stores } from 'src/@types/stores.types'; +import { ApiInterface } from '../api'; +import { Actions } from '../actions/lib/actions'; +import { Stores } from '../@types/stores.types'; import { TODOS_PARTITION_ID } from '../config'; import { isDevMode } from '../environment-remote'; import Request from './lib/Request'; -- cgit v1.2.3-54-g00ecf