| @@ -17,7 +17,9 @@ const ThirdPartCreateOffer = (props) => { | |||
| subcategory: props.informations.subcategory, | |||
| condition: props.informations.condition, | |||
| _created: new Date().toString(), | |||
| images: props.informations.images.filter((item) => item !== undefined), | |||
| images: props.informations.images.filter( | |||
| (item) => item !== undefined && item !== null | |||
| ), | |||
| name: props.informations.nameOfProduct, | |||
| description: props.informations.description, | |||
| }, | |||