I pass user prop to ChatWootWidget, but it doesn't work. I still have to fill out the email in the form to start the conversation

<ChatWootWidget
websiteToken={websiteToken}
locale={locale}
baseUrl={baseUrl}
closeModal={() => navigation.goBack()}
isModalVisible={true}
user={{
identifier: userInfo.email,
name: `${userInfo.name} ${userInfo.firstName}`,
avatar_url: '',
email: userInfo.email,
identifier_hash: 'xGNUWSCzHdMEmDrNm9CNoiGF',
}}
customAttributes={customAttributes}
colorScheme={colorScheme}
/>
I pass user prop to ChatWootWidget, but it doesn't work. I still have to fill out the email in the form to start the conversation

My code