Well we are using ion-slides component there .The issue is with this ionic component itself .
Please refer this tip to fix it :
https://forum.ionicframework.com/t/how-to-fix-spacing-issue-with-variable-slide-heights-using-ion-slides/90356/6
you can add these css in src/pages/profile/profile.scss file :
.swiper-slide:not(.swiper-slide-active) > div { display:none; }
OR
ion-slide { overflow-y: auto }
OR
.swiper-container { height: initial; }