Merge branch 'master' of github.com:AdrianoRobson/projeto-hit
commit
6f5a84e37b
|
@ -93,7 +93,7 @@ export const index = async (req: Request, res: Response): Promise<Response> => {
|
|||
|
||||
let queueIds: number[] = [];
|
||||
|
||||
if (queueIdsStringified) {
|
||||
if (queueIdsStringified && queueIdsStringified.trim().length > 0) {
|
||||
queueIds = JSON.parse(queueIdsStringified);
|
||||
}
|
||||
|
||||
|
|
|
@ -27,9 +27,10 @@ const CheckIsValidContact = async (
|
|||
}
|
||||
|
||||
try {
|
||||
if (!isValidNumber) {
|
||||
let _status: any;
|
||||
|
||||
const { data } = await axios.post(
|
||||
if (!isValidNumber) {
|
||||
const { data, status } = await axios.post(
|
||||
`${process.env.WHATS_NUMBER_VALIDATOR_URL}/api/validate`,
|
||||
{ mobile: number },
|
||||
{
|
||||
|
@ -40,10 +41,12 @@ const CheckIsValidContact = async (
|
|||
);
|
||||
|
||||
isValidNumber = data;
|
||||
_status = status;
|
||||
}
|
||||
|
||||
if (ignoreThrow) return isValidNumber?.number;
|
||||
|
||||
if (_status && _status == 422) throw new AppError("ERR_NO_WAPP_FOUND");
|
||||
|
||||
if (!isValidNumber || (isValidNumber && !isValidNumber.isValid)) {
|
||||
throw new AppError("invalidNumber");
|
||||
}
|
||||
|
|
|
@ -126,10 +126,10 @@ const ContactModal = ({ open, onClose, contactId, initialValues, onSave }) => {
|
|||
handleClose()
|
||||
}
|
||||
toast.success(i18n.t("contactModal.success"))
|
||||
setSaving(false)
|
||||
} catch (err) {
|
||||
toastError(err)
|
||||
}
|
||||
setSaving(false)
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in New Issue