Buttons stopped working when app is deployed

My app is built using sveltekit, and I am at a loss right now. I can not understand why my buttons all of a sudden became unusable. I had a prior version working perfectly fine however now they suddenly have stopped.

I put a test button on the main screen and trying to just log to console is not even working anymore.

My button:
<button
type=“button”
class=“bg-red-600 z-index: 30 !important;”
on:click={(e) => {
e.preventDefault();
console.log(“HI!”);
}}>TEST!</button

My application is running (now) on Node 20.x and I just did that plus a change to my config for the vercel adapter in attempts to resolve this error but nothing is making them work again and Im not even sure why. Please help!

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.