Birthdate is not being loaded

Hello, guys.

As you can see, I created a dynamic page to show some member data.
I was able to load the Last Name, First name, but the birthday is only loaded on the preview. Even when I run the code, the information is loaded. Although, when I publish the website, the information flashes for a second and stays hidden.


This is the card and the information loaded on the preview mode.
The elements are called text1,text2 and text3.


This is the card published ( The birthdate is gone )

This is the code -

( The code in text )

import wixUsers from ‘wix-users’;
import wixData from ‘wix-data’;

wixData.query(“Members/PrivateMembersData”)
.eq(“_id”, wixUsers.currentUser.id )
.find()
.then((results) => {
$w(‘#text1’).text = results.items[0].lastName;
$w(‘#text2’).text = results.items[0].firstName;
$w(‘#text3’).text = results.items[0].customfields_contact_birthdate;
})


These are the information on the database.


Can you help me with that?