summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/Paper.tsx2
-rw-r--r--src/containers/Service/ServiceContext.tsx4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Paper.tsx b/src/components/Paper.tsx
index b0e5bc4..2d64261 100644
--- a/src/components/Paper.tsx
+++ b/src/components/Paper.tsx
@@ -1,7 +1,7 @@
import React from 'react';
interface Props {
- variant: 'elevation' | 'outlined'
+ variant?: 'elevation' | 'outlined'
}
const style = {
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;