Skip to content

Commit 9ff964f

Browse files
chore: Misc Fixes for Release (#629)
1 parent 385008a commit 9ff964f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

legacy/src/constants/constantCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const constantCommandsToCreateStack = {
3232
export const constantCommandsToCreateSecret = {
3333
title: 'Stack Cheatsheet',
3434
documentation:
35-
'https://docs.zenml.io/getting-started/deploying-zenml/manage-the-deployed-services/secret-management',
35+
'https://docs.zenml.io/getting-started/deploying-zenml/secret-management',
3636
};
3737

3838
export const constantCommandsToCreateRepository = {

src/app/settings/secrets/Fragments.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function Commands() {
6161
))}
6262
<HelpBox
6363
text="Check all the commands and find more about Secrets in our Docs"
64-
link="https://docs.zenml.io/getting-started/deploying-zenml/manage-the-deployed-services/secret-management"
64+
link="https://docs.zenml.io/getting-started/deploying-zenml/secret-management"
6565
/>
6666
</section>
6767
);

src/app/stacks/create/new-infrastructure/Providers/GCP.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export function GCPWarning() {
103103
return (
104104
<InfoBox className="border-warning-300 bg-warning-50" intent="warning">
105105
The Cloud Shell session will warn you that the ZenML GitHub repository is untrusted. We
106-
recommend that you review the contents of the repository and then check the Trust repo
106+
recommend that you review the contents of the repository and then check the "Trust repo"
107107
checkbox to proceed with the deployment, otherwise the Cloud Shell session will not be
108108
authenticated to access your GCP projects.
109109
</InfoBox>

src/components/stacks/Sheet/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function ComponentList({ stackId }: Props) {
8585
return (
8686
<ul className="space-y-5 p-5">
8787
{components.map((component) => (
88-
<li key={component.body?.flavor}>
88+
<li key={component.id}>
8989
<ComponentListItem component={component} />
9090
</li>
9191
))}

src/contents/cloud-only.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ export function CTASection({ features, image, feature }: CTASectionProps) {
4141
</ul>
4242
<div className="flex flex-wrap items-center gap-2">
4343
<a
44-
href="https://zenml.io/pricing"
44+
href="https://cloud.zenml.io/signup"
4545
target="_blank"
4646
rel="noopener noreferrer"
4747
className={buttonVariants({ intent: "primary", size: "md" })}
4848
>
49-
Start the free trial
49+
Upgrade to ZenML Pro
5050
</a>
5151
<a
5252
href="https://www.zenml.io/cloud"

src/layouts/AuthenticatedLayout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export function AuthenticatedLayout() {
3636
<SidebarProvider initialOpen={isMinWidth}>
3737
<Sidebar />
3838
</SidebarProvider>
39-
<div className="w-full">
39+
<div className="w-full overflow-y-hidden">
4040
<Analytics />
4141
<ProductTour />
4242
<Outlet />

0 commit comments

Comments
 (0)