| @@ -121,7 +121,6 @@ const ProfileOffers = (props) => { | |||
| return ( | |||
| <ProfileOffersContainer> | |||
| {offersToShow.length !== 0 ? ( | |||
| <HeaderSelect | |||
| value={sortOption?.value ? sortOption.value : sortEnum.INITIAL.value} | |||
| IconComponent={DownArrow} | |||
| @@ -146,9 +145,6 @@ const ProfileOffers = (props) => { | |||
| ); | |||
| })} | |||
| </HeaderSelect> | |||
| ) : ( | |||
| <></> | |||
| )} | |||
| <Grid | |||
| container | |||
| direction="row" | |||
| @@ -161,7 +157,6 @@ const ProfileOffers = (props) => { | |||
| {props.isMyProfile ? "Moje objave" : "Objave kompanije"} | |||
| </HeaderTitle> | |||
| </Grid> | |||
| {offersToShow.length !== 0 ? ( | |||
| <SearchInput | |||
| fullWidth | |||
| ref={searchRef} | |||
| @@ -178,9 +173,6 @@ const ProfileOffers = (props) => { | |||
| ), | |||
| }} | |||
| /> | |||
| ) : ( | |||
| <></> | |||
| )} | |||
| <OffersContainer> | |||
| {!isMobile ? ( | |||
| isLoadingMineOffers || isLoadingMineOffers === undefined ? ( | |||