@campxdev/shared 1.4.9 → 1.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -42,8 +42,8 @@ const schema = yup.object().shape({
|
|
|
42
42
|
name: yup.string().required('Name is required'),
|
|
43
43
|
subject: yup.string().required('Subject is required'),
|
|
44
44
|
description: yup.string().required('Description is required'),
|
|
45
|
-
categoryId: yup.string().required('Category is required'),
|
|
46
|
-
serviceId: yup.string().required('Service is required'),
|
|
45
|
+
// categoryId: yup.string().required('Category is required'),
|
|
46
|
+
// serviceId: yup.string().required('Service is required'),
|
|
47
47
|
})
|
|
48
48
|
|
|
49
49
|
const HelpWidgetButton = () => {
|
|
@@ -225,7 +225,7 @@ const HelpWidgetForm = ({ onClose }) => {
|
|
|
225
225
|
rows={5}
|
|
226
226
|
required
|
|
227
227
|
/>
|
|
228
|
-
<FormSingleSelect
|
|
228
|
+
{/* <FormSingleSelect
|
|
229
229
|
label={'Category'}
|
|
230
230
|
name={'categoryId'}
|
|
231
231
|
control={control}
|
|
@@ -247,7 +247,7 @@ const HelpWidgetForm = ({ onClose }) => {
|
|
|
247
247
|
})) ?? []
|
|
248
248
|
}
|
|
249
249
|
required
|
|
250
|
-
/>
|
|
250
|
+
/> */}
|
|
251
251
|
{!uploadMedia?.length ? (
|
|
252
252
|
<ImageUpload
|
|
253
253
|
onFileUploaded={handleUploadImageChange}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { alpha, Box, Card, Dialog, Slide, styled } from '@mui/material'
|
|
2
2
|
import { TransitionProps } from '@mui/material/transitions'
|
|
3
3
|
import { forwardRef } from 'react'
|
|
4
|
-
import { background, contactBg } from '
|
|
4
|
+
import { background, contactBg } from '../../Header/assets'
|
|
5
5
|
|
|
6
6
|
export const StyledDialogHeader = styled(Box)(({ theme }) => ({
|
|
7
7
|
height: '180px',
|