Repeater shows on desktop but not on mobile.

Items in repeater1 are not showing via mobile. Fresh pair of eyes greatly appreciated.

import { session } from ‘wix-storage’ ;
import wixLocation from ‘wix-location’ ;

$w.onReady( function () {
//TODO: write your page related code here…

});

export function dropdown1_change(event) {
//Add your code for this event here:
$w( ‘#columnStrip1’ ).expand();
}

export function container2_click(event) {
//Add your code for this event here:
let clickedItemData;
let sessionservice;
let state;
let $item = $w.at(event.context);
state = $w( “#dropdown1” ).value;
clickedItemData = $item( “#servicesdataset” ).getCurrentItem();
sessionservice = clickedItemData.serviceName;
console.log(sessionservice);
session.setItem( “service” , sessionservice);
session.setItem( “state” , state);

}

The code do not refer to #repeater1 is it inside the #columnStrip1? doesn’t seem releated to this specific code…