Problem with OnLogin function on wix Code

Hello,
I’m trying to Hide/Show some buttons
But I don’t understand why my code doesn’t work :

import wixUsers from ‘wix-users’;

let user = wixUsers.currentUser

$w.onReady( function () {

$w('#buttonMaxime').hide(); 
$w('#buttonPhilippe').hide(); 
$w('#buttonAntoine').hide(); 

wixUsers.onLogin(() => {  

    user.getEmail() 
        .then((email) => { 
            console.log(email); 

if (email === “maxou.sb@icloud.com”) {
$w(‘#buttonMaxime’).show();
} else if (email === “jorat.philippe34@outlook.com”) {
$w(‘#buttonPhilippe’).show();
} else if (email === “falco.filipe@gmail.com”) {
console.log(“entrer”);

                $w('#buttonAntoine').show(); 
            } 
        }); 

}); 

});

Try adding something like this at the start and wrap the event with onReady function…

import wixUsers from 'wix-users';

$w.onReady(() => {
    wixUsers.onLogin( (user) => { 
        $w('# buttonMaxime').show(); 
            $w('#buttonPhilippe').hide(); 
            $w('#buttonAntoine').hide(); 
and carry on with the code here.....            
    });
});

Ok but how get different option with mail ? I would like to show button about specific mail. With this code how can add the user.getEmail ?