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/lib/TypedStore.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/stores/lib') diff --git a/src/stores/lib/TypedStore.ts b/src/stores/lib/TypedStore.ts index c78f83850..c97ae1aa5 100644 --- a/src/stores/lib/TypedStore.ts +++ b/src/stores/lib/TypedStore.ts @@ -1,7 +1,7 @@ import { computed, IReactionPublic, observable } from 'mobx'; -import { Actions } from 'src/actions/lib/actions'; -import { ApiInterface } from 'src/api'; -import { Stores } from 'src/@types/stores.types'; +import { Actions } from '../../actions/lib/actions'; +import { ApiInterface } from '../../api'; +import { Stores } from '../../@types/stores.types'; import Reaction from './Reaction'; export default abstract class TypedStore { -- cgit v1.2.3-54-g00ecf