fix
This commit is contained in:
parent
35f0ccc93b
commit
37a7783cc0
@ -217,7 +217,7 @@ export const ContactForm = ({
|
|||||||
enqueueSnackbar("повторите попытку позже")
|
enqueueSnackbar("повторите попытку позже")
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings?.cfg.resultInfo.when === "after" || settings?.cfg.resultInfo.when === "email" && !checkEmptyData({ resultData: resultQuestion })) {
|
if ((settings?.cfg.resultInfo.when === "after" || settings?.cfg.resultInfo.when === "email") && !checkEmptyData({ resultData: resultQuestion })) {
|
||||||
setShowContactForm(false)
|
setShowContactForm(false)
|
||||||
setShowResultForm(true)
|
setShowResultForm(true)
|
||||||
}
|
}
|
||||||
@ -340,7 +340,7 @@ const CustomInput = ({ title, desc, Icon, onChange }: any) => {
|
|||||||
<TextField
|
<TextField
|
||||||
onChange={onChange}
|
onChange={onChange}
|
||||||
sx={{
|
sx={{
|
||||||
width: "350px",
|
width: isMobile ? "300px" : "350px",
|
||||||
}}
|
}}
|
||||||
placeholder={desc}
|
placeholder={desc}
|
||||||
InputProps={{
|
InputProps={{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user