Update Credits.tsx (#9062)

the license check never seemed to work -- removing

Co-authored-by: Bailey Pumfleet <bailey@pumfleet.co.uk>
pull/9064/head^2
Peer Richelsen 2023-05-23 11:42:01 +01:00 committed by GitHub
parent c96cbd7a9d
commit ddee3e8bf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -4,9 +4,7 @@ import { useEffect, useState } from "react";
import { COMPANY_NAME, IS_SELF_HOSTED } from "@calcom/lib/constants";
import pkg from "@calcom/web/package.json";
export const CalComVersion = `v.${pkg.version}-${!IS_SELF_HOSTED ? "h" : "sh"}-${
process.env.CALCOM_LICENSE_KEY === "" ? "ee" : "ce"
}`;
export const CalComVersion = `v.${pkg.version}-${!IS_SELF_HOSTED ? "h" : "sh"}`;
export default function Credits() {
const [hasMounted, setHasMounted] = useState(false);