removed credits from auth container (#6766)

pull/6719/head
Peer Richelsen 2023-01-27 19:20:39 +01:00 committed by GitHub
parent 87c178e53b
commit 0faf294367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -1,7 +1,7 @@
import classNames from "classnames"; import classNames from "classnames";
import { APP_NAME, LOGO } from "@calcom/lib/constants"; import { APP_NAME, LOGO } from "@calcom/lib/constants";
import { Credits, HeadSeo } from "@calcom/ui"; import { HeadSeo } from "@calcom/ui";
import Loader from "@components/Loader"; import Loader from "@components/Loader";
@ -35,10 +35,7 @@ export default function AuthContainer(props: React.PropsWithChildren<Props>) {
<div className="mx-2 rounded-md border border-gray-200 bg-white px-4 py-10 sm:px-10"> <div className="mx-2 rounded-md border border-gray-200 bg-white px-4 py-10 sm:px-10">
{props.children} {props.children}
</div> </div>
<div className="mt-8 text-center text-sm text-gray-600"> <div className="mt-8 text-center text-sm text-gray-600">{props.footerText}</div>
{props.footerText}
<Credits />
</div>
</div> </div>
</div> </div>
); );