nestiq-component-library 1.1.50 → 1.1.51

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.
@@ -44,6 +44,8 @@ interface PopupProps {
44
44
  lastname: string;
45
45
  };
46
46
  handleSendMessage: any;
47
+ firstname: any;
48
+ lastname: any;
47
49
  }
48
50
  export default function PropertyCard(props: PopupProps) {
49
51
  const [liked, setLiked] = useState(false);
@@ -278,8 +280,9 @@ export default function PropertyCard(props: PopupProps) {
278
280
  {messagePopUp && (
279
281
  <MessagePopUp
280
282
  onClick={() => setMessagPopUp(false)}
281
- userData={props.userData}
282
283
  handleSendMessage={props.handleSendMessage}
284
+ firstname={props.firstname}
285
+ lastname={props.lastname}
283
286
  />
284
287
  )}
285
288
  {sharePopUp && <SharePopup onClick={() => setSharePopUp(false)} />}