Rename link share from Calendso to Cal (#702)

pull/704/head^2
Cassidy Williams 2021-09-20 07:04:53 -05:00 committed by GitHub
parent ef6c919fb1
commit c7874dee29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -308,12 +308,12 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
);
case LocationType.Phone:
return (
<p className="text-sm">Calendso will ask your invitee to enter a phone number before scheduling.</p>
<p className="text-sm">Cal will ask your invitee to enter a phone number before scheduling.</p>
);
case LocationType.GoogleMeet:
return <p className="text-sm">Calendso will provide a Google Meet location.</p>;
return <p className="text-sm">Cal will provide a Google Meet location.</p>;
case LocationType.Zoom:
return <p className="text-sm">Calendso will provide a Zoom meeting URL.</p>;
return <p className="text-sm">Cal will provide a Zoom meeting URL.</p>;
}
return null;
};