Untitled

mail@pastecode.io avatar
unknown
plain_text
19 days ago
558 B
3
Indexable
Never
I have this code. Keep it with you cause on the next message I'll show more details:

  const _onClickAlterRoom = () => {
    clickDetailsDL('Alterar quarto');
    onClickAlterRoom();
    setShowAlterRoom(!showAlterRoom);

    setTimeout(() => {
      if (showAlterListType === 'Room' || qtyRooms <= 1) {
        // window.location.hash = '#freteRecommend';
        summaryScrollRef.current.scrollIntoView();
      } else {
        // window.location.hash = '#HotelSelected';
        hotelSelectedScrollRef.current.scrollIntoView();
      }
    }, 500);
  };
Leave a Comment