summaryrefslogtreecommitdiff
path: root/src/services/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/index.ts')
-rw-r--r--src/services/index.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/services/index.ts b/src/services/index.ts
index ade29df..2b0b17b 100644
--- a/src/services/index.ts
+++ b/src/services/index.ts
@@ -2,7 +2,6 @@ import contractors from './contractors';
import waybills from './waybills';
import transfers from './transfers';
import products from './products';
-import account from './account';
import { registerServiceHooks } from '../hooks/useAPIClient';
const services = [
@@ -10,7 +9,6 @@ const services = [
products,
waybills,
transfers,
- account,
];
services.forEach(service => registerServiceHooks(service.route));