diff options
Diffstat (limited to 'src/services/contractors')
-rw-r--r-- | src/services/contractors/ContractorPanel.tsx | 2 | ||||
-rw-r--r-- | src/services/contractors/index.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/services/contractors/ContractorPanel.tsx b/src/services/contractors/ContractorPanel.tsx index a3650ef..f7ed8ad 100644 --- a/src/services/contractors/ContractorPanel.tsx +++ b/src/services/contractors/ContractorPanel.tsx @@ -1,6 +1,6 @@ import React from 'react'; import Button from '../../components/Button'; -import { PanelProps } from '../../containers/Service/ServiceContext'; +import { PanelProps } from '../../lib/ServiceContext'; const ContractorPanel: React.FC<PanelProps> = ({ item }) => { diff --git a/src/services/contractors/index.ts b/src/services/contractors/index.ts index c9e71a1..2341f3a 100644 --- a/src/services/contractors/index.ts +++ b/src/services/contractors/index.ts @@ -1,6 +1,6 @@ import Form from './ContractorForm'; import Panel from './ContractorPanel'; -import { ServiceParams } from '../../containers/Service/ServiceContext'; +import { ServiceParams } from '../../lib/ServiceContext'; const service: ServiceParams = { route: 'contractors', |