Hidding import features from other services (#3970)

pull/3973/head
alannnc 2022-08-25 12:25:00 -06:00 committed by GitHub
parent 45f16333a8
commit 4feda21d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -268,7 +268,10 @@ export default function Onboarding(props: inferSSRProps<typeof getServerSideProp
description: t("welcome_instructions"), description: t("welcome_instructions"),
Component: ( Component: (
<> <>
{selectedImport == "" && ( {/** @NOTE: Hiding temporarily
* @URL related: https://github.com/calcom/cal.com/issues/3941
*/}
{/* {selectedImport == "" && (
<div className="mb-4 grid grid-cols-2 gap-x-4"> <div className="mb-4 grid grid-cols-2 gap-x-4">
<Button color="secondary" onClick={() => setSelectedImport("calendly")}> <Button color="secondary" onClick={() => setSelectedImport("calendly")}>
{t("import_from")} Calendly {t("import_from")} Calendly
@ -277,8 +280,8 @@ export default function Onboarding(props: inferSSRProps<typeof getServerSideProp
{t("import_from")} SavvyCal {t("import_from")} SavvyCal
</Button> </Button>
</div> </div>
)} )} */}
{selectedImport && ( {/* {selectedImport && (
<div> <div>
<h2 className="font-cal text-2xl text-gray-900"> <h2 className="font-cal text-2xl text-gray-900">
{t("import_from")} {selectedImport === "calendly" ? "Calendly" : "SavvyCal"} {t("import_from")} {selectedImport === "calendly" ? "Calendly" : "SavvyCal"}
@ -333,7 +336,7 @@ export default function Onboarding(props: inferSSRProps<typeof getServerSideProp
</Button> </Button>
</form> </form>
</div> </div>
)} )}
<div className="relative my-4"> <div className="relative my-4">
<div className="absolute inset-0 flex items-center" aria-hidden="true"> <div className="absolute inset-0 flex items-center" aria-hidden="true">
<div className="w-full border-t border-gray-300" /> <div className="w-full border-t border-gray-300" />
@ -342,6 +345,7 @@ export default function Onboarding(props: inferSSRProps<typeof getServerSideProp
<span className="bg-white px-2 text-sm text-gray-500">or</span> <span className="bg-white px-2 text-sm text-gray-500">or</span>
</div> </div>
</div> </div>
*/}
<form className="sm:mx-auto sm:w-full"> <form className="sm:mx-auto sm:w-full">
<section className="space-y-8"> <section className="space-y-8">
{user.username !== "" && ( {user.username !== "" && (