added publicRuntimeConfig in nextjs config for upgrade URL (#651)
* added publicRuntimeConfig in nextjs config for upgrade URL (merge conflict fix) * removed debug remnants * merge-conflict further fix * change request appliedpull/653/head^2
parent
820c25f948
commit
0d60052c88
|
@ -281,8 +281,8 @@ const EventTypesPage = (props: PageProps) => {
|
|||
message={
|
||||
<>
|
||||
To upgrade go to{" "}
|
||||
<a href={`${window.location.origin}/upgrade`} className="underline">
|
||||
{`${window.location.origin}/upgrade`}
|
||||
<a href={process.env.UPGRADE_URL || "https://cal.com/upgrade"} className="underline">
|
||||
{process.env.UPGRADE_URL || "https://cal.com/upgrade"}
|
||||
</a>
|
||||
</>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue