keyPress event and data query is not working

Again wix has destroyed everything

ALL OF A SUDDEN THIS DOESNT WORK ANYMORE

export function input70_keyPress(event) {
 if (event.key === "Enter") {    
            let valueX = $w("#input70").value
            let aa = wixData.query("SKERS")
                .contains("SKERSNAME", $w("#input70").value)
            let bb = wixData.query("SKERS")
                .contains("title", $w("#input70").value)
            let ww = wixData.query("SKERS")
                .contains("iftRequest", $w("#input70").value)
            aa.or(bb).or(ww)
                .limit(5)
                .find()
                .then((results) => {
                    console.log("THE TRACK RETURN", results.items)
})
}
                 })

I have over 200k lines of code in the website and 90percent of it depends on this type of query

Are you seeing an error message in the console?

Also there appears to be an extra ) on the last line which could be causing the issue.

No error in the console when the code is triggered that is why i added some logs to know where the issue is and it is clearly from the query.