Set Repeater Image from Media Manager

By the way - this is the code I use

const featureCategoriesData = [{
		_id: "1",
		name: "Meds, Sex Pills & Supplements",
		url: "/meds-sex-pills-supplements",
		imageSource: "image://pills.jpg",
		lustnlustCategoryId: 123
	}];

	const featuredCategoriesRepeater = $w("#featureCategories");
	featuredCategoriesRepeater.onItemReady(($w, itemData, index) => {
		$w("#name").text = itemData.name;
		$w("#image").src = itemData.imageSource;
	});