aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.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/ServicesStore.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/ServicesStore.ts')
-rw-r--r--src/stores/ServicesStore.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stores/ServicesStore.ts b/src/stores/ServicesStore.ts
index e690b3791..4c1b4116c 100644
--- a/src/stores/ServicesStore.ts
+++ b/src/stores/ServicesStore.ts
@@ -5,9 +5,9 @@ import ms from 'ms';
5import { ensureFileSync, pathExistsSync, writeFileSync } from 'fs-extra'; 5import { ensureFileSync, pathExistsSync, writeFileSync } from 'fs-extra';
6import { join } from 'path'; 6import { join } from 'path';
7 7
8import { Stores } from 'src/@types/stores.types'; 8import { Stores } from '../@types/stores.types';
9import { ApiInterface } from 'src/api'; 9import { ApiInterface } from '../api';
10import { Actions } from 'src/actions/lib/actions'; 10import { Actions } from '../actions/lib/actions';
11import Request from './lib/Request'; 11import Request from './lib/Request';
12import CachedRequest from './lib/CachedRequest'; 12import CachedRequest from './lib/CachedRequest';
13import matchRoute from '../helpers/routing-helpers'; 13import matchRoute from '../helpers/routing-helpers';