yarn format

This commit is contained in:
Peer Richelsen
2023-04-03 14:08:17 +02:00
parent 9d61dc2f7c
commit cf4bd8a77d
2 changed files with 6 additions and 6 deletions
@@ -121,11 +121,12 @@ export default function MemberListItem(props: Props) {
data-email={props.member.email}>
{props.member.email}
</span>
{bookingLink && <>
<span className="mx-2 block text-gray-600"></span>
<span className="block text-sm text-gray-600">{bookingLink}</span>
</>
}
{bookingLink && (
<>
<span className="mx-2 block text-gray-600"></span>
<span className="block text-sm text-gray-600">{bookingLink}</span>
</>
)}
</div>
</div>
</div>
@@ -14,4 +14,3 @@ export const CardInsights = (props: ICardProps) => {
</Card>
);
};