Works on Preview not on Live Multilingual

I have been trying to figure out why this is happening. Honestly, my editor has given me issues all day. often I get stuck in the Multilingual Mode.
I have done this in private/incognito window and a separate browser. Please help. It was working earlier today.

Link: https://www.sleepyhollowtarrytownchamber.com/job-board-en

//-------------Imports-------------//
import wixData from ‘wix-data’ ;
import wixLocation from ‘wix-location’ ;
import { session } from ‘wix-storage’ ;
import wixWindow from ‘wix-window’ ;
//-------------Filter Dates-----------//
$w . onReady ( function () {
$w ( ‘#dataset1’ ). onReady (() => {
let today = new Date ();
console . log ( today );
today . setHours ( 0 );
today . setMinutes ( 0 );
today . setSeconds ( 0 );
console . log ( today );
$w ( ‘#dataset1’ ). setFilter ( wixData . filter ()
. ge ( ‘appDate’ , today )
. eq ( ‘language’ , “English” )
);
});
//-------------Onclick Value------------//
$w ( “#postaJob” ). onClick (( event ) => {
session . setItem ( “pageName” , “jobApp” );
$w ( ‘#postaJob’ ). link = wixLocation . to ( “/applications-personal-data” );
})
$w ( “#postaJobSpan” ). onClick (( event ) => {
session . setItem ( “pageName” , “esjobApp” )
$w ( ‘#postaJobSpan’ ). link = wixLocation . to ( “/applications-personal-data” );
})
//-------------Repeater------------//
$w ( ‘#industry, #experience, #city, #degree, #hours’ ). onChange (() => {
search ();

})
//-------------Clear------------//
$w ( ‘#clear’ ). onClick (() => {
$w ( ‘#textCount’ ). text = “Resetting” ;
$w ( ‘#industry, #experience, #city, #degree, #hours’ ). selectedIndex = undefined ;
$w ( “#loadmore1” ). show (); //This is your GIF or animated image
$w ( ‘#repeater2’ ). hide () //This is your datase
let today = new Date ()
console . log ( today );
today . setHours ( 0 );
today . setMinutes ( 0 );
today . setSeconds ( 0 );
console . log ( today );
$w ( ‘#dataset1’ ). setFilter ( wixData . filter ()
. ge ( ‘appDate’ , today )
. eq ( ‘language’ , “English” )
)
$w ( ‘#textCount’ ). text = “Reset!”
console . log ( “Done Resetting” )
$w ( “#loadmore1” ). hide (); //This is your GIF or animated image
$w ( ‘#repeater2’ ). show ();
$w ( ‘#textCount’ ). hide ();
})

//-------------Filters------------//
function search (){
let filter = wixData . filter ();
let industry = $w ( “#industry” ). value ;
let experience = $w ( “#experience” ). value ;
let city = $w ( “#city” ). value ;
let degree = $w ( “#degree” ). value ;
let hours = $w ( “#hours” ). value ;

if ( industry && industry !== ‘all’ ) {
filter = filter . contains ( “industry” , industry );
}

if ( experience && experience !== ‘all’ ) {
filter = filter . eq ( “experience” , experience );
}
if ( city && city !== ‘all’ ) {
filter = filter . eq ( “title” , city );
}
if ( degree && degree !== ‘all’ ) {
filter = filter . eq ( “degree” , degree );
}
if ( hours && hours !== ‘all’ ) {
filter = filter . eq ( “amountofHours” , hours );
}
$w ( “#loadmore1” ). show (); //This is your GIF or animated image
$w ( ‘#repeater2’ ). hide () //This is your dataset
$w ( ‘#dataset1’ ). setFilter ( filter )
. then (() => {
$w ( “#loadmore1” ). hide (); //This is your GIF or animated image
$w ( ‘#repeater2’ ). show ();
console . log ( “Done loading search” );
})
. then ( count );
$w ( ‘#textCount’ ). show ();
$w ( ‘#textCount’ ). text = “Searching” ;

//-------------Count------------//
function count () {
let total = $w ( ‘#dataset1’ ). getTotalCount ();
if ( total > 0 ) {
$w ( ‘#textCount’ ). text = ${ total } results found! ;
} else {
$w ( ‘#textCount’ ). text = “No results found!” ;
}
}
}
//-------------Listing Buttons------------//
$w ( “#repeater2” ). onItemReady (( $item , itemData , index ) => {
if (! itemData . url ) {
$item ( “#apply” ). link = ‘mailto:’ + itemData . jobappEmail ;
} else if (! itemData . jobappEmail ) {
$item ( “#apply” ). link = itemData . url ;
}
if (! itemData . linkedIn ) {
$item ( “#linkedin” ). hide ()
} else {
$item ( “#linkedin” ). show ()
}
});
});
export function button21_click ( event ) {
$w ( ‘#button21’ ). link = wixLocation . to ( “/job-board-es” )

if ( wixWindow . multilingual . currentLanguage === “en” ){
wixWindow . multilingual . currentLanguage = “es” ;
}

}