(SOLVED) - What am I missing? (syntax problem?)

@jonatandor35 So, this is the Live Page :
https://gemats.wixsite.com/gkmatsaridis/law-database-1

These are the hidden boxes I want to show/hide according to getTotalCount number (which for this example’s sake let’s say it’s the number ‘446’, could be anything though).

And this is the complete code on that page. Most of it are nicely working export functions for my tooltips (small question marks below the dropdown menus):

$w.onReady (function() {
    $w("#dataset1").onReady(async() => {
 let count = await $w("#dataset1").getTotalCount(); 
        console.log(count)
        $w("#counter").text = count.toString()
 
 if ($w("#counter").text === "446") { 
                $w("#text29").show();
        }
 else {
        $w("#text26").show();
        }
    })
});

export function table1_dataChange(event) {
 let count = $w("#dataset1").getTotalCount(); 
    $w("#counter").text = String(count);
}


export function hoverZone_mouseIn(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    $w('#hoverEfarmostiki').show();
    $w('#checkbox2').hide();
    $w('#vectorImage3').hide();
    $w('#hoverBox').show();
}

export function hoverZone_mouseOut(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    $w('#hoverEfarmostiki').hide("fade");
    $w('#checkbox2').show("fade");
    $w('#vectorImage3').show("fade");
    $w('#hoverBox').hide("fade");

}

export function hoverzoneEfarm1_mouseIn_1(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    $w('#hoverYpoyrgeio').show();
    $w('#hoverboxYpoyrgeio').show();
    $w('#hoverzoneEfarm').hide();
}

export function hoverzoneEfarm1_mouseOut(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    $w('#hoverYpoyrgeio').hide("fade");
    $w('#hoverboxYpoyrgeio').hide("fade");
    $w('#hoverzoneEfarm').show("fade");
}

export function hoverzoneIsxyon_mouseIn_1(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    $w('#hoverboxIsxyon').show();
    $w('#hovermainIsxyon').show();
    $w('#vectorImage2').hide();
    $w('#checkbox1').hide();
}

export function hoverzoneIsxyon_mouseOut_1(event) {
 // This function was added from the Properties & Events panel. To learn more, visit http://wix.to/UcBnC-4
 // Add your code for this event here: 
    $w('#hoverboxIsxyon').hide("fade");
    $w('#hovermainIsxyon').hide("fade");
    $w('#vectorImage2').show("fade");
    $w('#checkbox1').show("fade");
}