adding contact expo contact

Hi dear developer. I use expo-contacts to add a number to my phone. BUT when I add the contact, All fields are added except the pohe number field

import React from 'react';
import * as Contacts from 'expo-contacts';
import * as Permissions from 'expo-permissions';
export function SauvegarderContact(data){
  (async ()=>{
    const { status, permissions } = await Permissions.askAsync(Permissions.CONTACTS);
    if (status === 'granted') {

  await Contacts.removeContactAsync(data['id']);
  const contactId = await Contacts.addContactAsync(data);
  await Contacts.updateContactAsync(data);
    } else {
      throw new Error('Location permission not granted');
    }
  })()
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.