Filter Repeater not Showing ALL

Did the Wix tutorial (https://www.wix.com/code/home/forum/product-updates/how-to-create-a-search-for-your-database) and the filter works great except the All County selection just makes it go blank. How can I have it show all countries when “All Country” is selected?
https://heritagestemcamps.wixsite.com/website-6/camps

Hey
Please don’t paste code as image, paste it as code so I can edit and help you. Just paste it in, select it and mark the {} and it will be formatted.

import wixUsers from ‘wix-users’;
import wixData from ‘wix-data’;
import wixLocation from ‘wix-location’;

$w.onReady(() => {
loadCountry();
});

let lastFilterTitle;
let lastFilterCountry;
let debounceTimer;
export function iTitle_keyPress(event, $w) {
if (debounceTimer) {
clearTimeout(debounceTimer);
debounceTimer = undefined;
}
debounceTimer = setTimeout(() => {
filter($w(‘#iTitle’).value, lastFilterCountry);
}, 500);
}

export function iCountry_change(event, $w) {
filter(lastFilterTitle, $w(‘#iCountry’).value);
}

function filter(title, country) {
if (lastFilterTitle !== title || lastFilterCountry !== country) {
let newFilter = wixData.filter();
if (title)
newFilter = newFilter.contains(‘title’, title);
if (country)
newFilter = newFilter.contains(‘country’, country);
$w(‘#dataset1’).setFilter(newFilter);
lastFilterTitle = title;
lastFilterCountry = country;
}
}
function loadCountry() {
wixData.query(‘Country’)
.find()
.then(res => {
let options = [{“value”: ‘’, “label”: ‘All Country’}];
options.push(…res.items.map(country => {
return {“value”: country.title, “label”: country.title};
}));
$w(‘#iCountry’).options = options;
});

}

Thanks Andreas, I recently checked out your Wixshow site to find any code that you might have to help fix this. I thought you had previously did a post for a similar project but could not find it again. Thanks again for your time.