`yarn lint --fix` (#783)

pull/782/head^2
Alex Johansson 2021-09-26 15:08:40 +01:00 committed by GitHub
parent 6d2f89fc32
commit 22b050b9e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -996,9 +996,9 @@ const EventTypePage = (props: inferSSRProps<typeof getServerSideProps>) => {
onClick={() => {
navigator.clipboard.writeText(
(`${process.env.NEXT_PUBLIC_APP_URL}/` ?? "https://cal.com/") +
(team ? "team/" + team.slug : eventType.users[0].username) +
"/" +
eventType.slug
(team ? "team/" + team.slug : eventType.users[0].username) +
"/" +
eventType.slug
);
showToast("Link copied!", "success");
}}