chore: application prettier

This commit is contained in:
Luc SORIGNET
2025-04-15 19:37:47 +02:00
parent dd0884bbce
commit f7666c894b
174 changed files with 10609 additions and 8760 deletions

View File

@ -1,7 +1,12 @@
import { formatPhoneNumber } from "@/utils/Telephone";
import { formatPhoneNumber } from '@/utils/Telephone';
export function PhoneLabel({phoneNumber}){
return (
<a className="text-sm font-semibold text-gray-800" href={"tel:"+phoneNumber}>{formatPhoneNumber(phoneNumber)}</a>
);
}
export function PhoneLabel({ phoneNumber }) {
return (
<a
className="text-sm font-semibold text-gray-800"
href={'tel:' + phoneNumber}
>
{formatPhoneNumber(phoneNumber)}
</a>
);
}