error: None of my code is working?

Hi all.

None of my code is working! I’ve put console logs everywhere and nothing is showing up

I think it may be because I’m getting this error. That says “Error parsing web-module”. But I don’t know what the error means

Here’s my code

export function button3_click(event) {
 //Add your code for this event here: 
    $w('#dataset2').setFieldValue("accepted", true);
    $w('#dataset2').save();
    $w("#button3").hide();
}
export function button19_click_1(event) {
 //Add your code for this event here: 
 if ($w('#box6').collapsed) {
        $w('#box6').expand();
    } 
 else {
        $w('#box6').collapse();
    }
}

var listingid = $w("#input3").value;
$w("#input3").value = $w("#text45").text; //<--------------- no id shows up??

//prepopulates id field
export function dataset1_ready() {
 //Add your code for this event here:
    $w('#dataset1').setFieldValue('listingid', listingid)
}

export function button18_click(event, $w) {
    $w('#dataset1').setFieldValue('listingid', $w('#input3').value);
    $w('#dataset1').save();
    $w("#button19").disable();
 if ($w('#box6').expand) {
        $w('#box6').collapse();
    }
}
$w.onReady(() => {
    $w("#dataset2").onReady(() => {
        $w('#dataset1').onItemValuesChanged(() => {
            $w('#dataset2').refresh();
        });
    });
});

import wixUsers from 'wix-users';

let user = wixUsers.currentUser;
let userId = user.id;
let isLoggedIn = user.loggedIn; // true  <---------------------- mine

//filter
import wixData from 'wix-data';
export function dataset2_ready() {
 //shows only item-related comments
 let filter = wixData.filter();
    filter = filter
        .eq("listingid", $w("#input3").value);
    $w("#dataset2").setFilter(filter);
}

$w.onReady(function () {
    $w("#dynamicDataset").onReady(() => { // <--------------------- mine
 let itemObj = $w("#dynamicDataset").getCurrentItem();
 //console.log("item obj" + JSON.stringify(itemObj));
 let val = itemObj._id;

 if (user.id = itemObj._id) {
 //console.log("hello post creator")
                } else {
 //console.log("you're not the post creator") //<------------- mine
                }
            });
});

Is your code in one file? Two files? Frontend? Backend?

We need more information in order to provide assistance.

That’s my frontend code. This is my backend code

// For full API documentation, including code examples, visit https://wix.to/94BuAAs

$w.onReady(function () {
 //TODO: write your page related code here...
 //poopoo
});

My overall goal is to be able to check if the user is the post creator.
But right now, I’m getting an error and none of my code, even console logs is showing up or working :disappointed_relieved: