Compare 2 input fields to a wix database

@dhruavmathur That’s one of the problems that I have using Event Handlers. You are better of deleting this event handler and calling the method directly, without connecting to an event handler. Replace this:

export function gg_click(event, $w) {

}

To this:

$w("#gg").onClick(() => {

})