summaryrefslogtreecommitdiff
path: root/src/containers/Service
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-14 20:04:49 +0300
committereug-vs <eug-vs@keemail.me>2021-03-14 20:04:49 +0300
commitba55d180f8878d6a0a592fdc9c3e8015399986a3 (patch)
tree9d90ea6890a2a6ce3e15ac18237d060bda6cb1b7 /src/containers/Service
parentdd98ff9bae15b5e6244d8ae7d15cd12b179caade (diff)
downloadcommercel-ui-ba55d180f8878d6a0a592fdc9c3e8015399986a3.tar.gz
fix: type checks
Diffstat (limited to 'src/containers/Service')
-rw-r--r--src/containers/Service/ServiceContext.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/Service/ServiceContext.tsx b/src/containers/Service/ServiceContext.tsx
index 6c1a760..c035417 100644
--- a/src/containers/Service/ServiceContext.tsx
+++ b/src/containers/Service/ServiceContext.tsx
@@ -6,8 +6,8 @@ export interface ServiceParams {
name: string;
nameSingular: string;
tableFields: any[];
- Form: React.FC<FormikProps>;
default: Record<string, any>;
+ Form?: React.FC<FormikProps>;
}
const ServiceContext = React.createContext<ServiceParams>({
@@ -15,7 +15,7 @@ const ServiceContext = React.createContext<ServiceParams>({
name: '',
nameSingular: '',
tableFields: [],
- Form: () => null,
+ default: {},
});
export const ServiceProvider = ServiceContext.Provider;