diff --git a/examples/crm/src/contacts/ContactAside.tsx b/examples/crm/src/contacts/ContactAside.tsx
index 6e7af8d67f..f0ed014fad 100644
--- a/examples/crm/src/contacts/ContactAside.tsx
+++ b/examples/crm/src/contacts/ContactAside.tsx
@@ -66,33 +66,31 @@ export const ContactAside = ({ link = 'edit' }: { link?: 'edit' | 'show' }) => {
/>
)}
- {record.phone_number1 && (
+ {record.phone_number1.number && (
- {' '}
-
- Work
-
+ {' '}
+ {record.phone_number1.type !== 'Other' && (
+
+ )}
)}
- {record.phone_number2 && (
+ {record.phone_number2.number && (
- {' '}
-
- Home
-
+ {' '}
+ {record.phone_number2.type !== 'Other' && (
+
+ )}
)}
diff --git a/examples/crm/src/contacts/ContactCreate.tsx b/examples/crm/src/contacts/ContactCreate.tsx
index f3b0393d29..5e5497447e 100644
--- a/examples/crm/src/contacts/ContactCreate.tsx
+++ b/examples/crm/src/contacts/ContactCreate.tsx
@@ -1,6 +1,6 @@
import * as React from 'react';
import { CreateBase, Form, Toolbar, useGetIdentity } from 'react-admin';
-import { Card, CardContent, Box, Avatar } from '@mui/material';
+import { Card, CardContent, Box } from '@mui/material';
import { ContactInputs } from './ContactInputs';
import { Contact } from '../types';
@@ -22,14 +22,7 @@ export const ContactCreate = () => {