Skip to content

Commit

Permalink
chore: Misc Fixes for Release (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cahllagerfeld authored Jul 15, 2024
1 parent 385008a commit 9ff964f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion legacy/src/constants/constantCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const constantCommandsToCreateStack = {
export const constantCommandsToCreateSecret = {
title: 'Stack Cheatsheet',
documentation:
'https://docs.zenml.io/getting-started/deploying-zenml/manage-the-deployed-services/secret-management',
'https://docs.zenml.io/getting-started/deploying-zenml/secret-management',
};

export const constantCommandsToCreateRepository = {
Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/secrets/Fragments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function Commands() {
))}
<HelpBox
text="Check all the commands and find more about Secrets in our Docs"
link="https://docs.zenml.io/getting-started/deploying-zenml/manage-the-deployed-services/secret-management"
link="https://docs.zenml.io/getting-started/deploying-zenml/secret-management"
/>
</section>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/stacks/create/new-infrastructure/Providers/GCP.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function GCPWarning() {
return (
<InfoBox className="border-warning-300 bg-warning-50" intent="warning">
The Cloud Shell session will warn you that the ZenML GitHub repository is untrusted. We
recommend that you review the contents of the repository and then check the Trust repo
recommend that you review the contents of the repository and then check the "Trust repo"
checkbox to proceed with the deployment, otherwise the Cloud Shell session will not be
authenticated to access your GCP projects.
</InfoBox>
Expand Down
2 changes: 1 addition & 1 deletion src/components/stacks/Sheet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function ComponentList({ stackId }: Props) {
return (
<ul className="space-y-5 p-5">
{components.map((component) => (
<li key={component.body?.flavor}>
<li key={component.id}>
<ComponentListItem component={component} />
</li>
))}
Expand Down
4 changes: 2 additions & 2 deletions src/contents/cloud-only.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ export function CTASection({ features, image, feature }: CTASectionProps) {
</ul>
<div className="flex flex-wrap items-center gap-2">
<a
href="https://zenml.io/pricing"
href="https://cloud.zenml.io/signup"
target="_blank"
rel="noopener noreferrer"
className={buttonVariants({ intent: "primary", size: "md" })}
>
Start the free trial
Upgrade to ZenML Pro
</a>
<a
href="https://www.zenml.io/cloud"
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/AuthenticatedLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function AuthenticatedLayout() {
<SidebarProvider initialOpen={isMinWidth}>
<Sidebar />
</SidebarProvider>
<div className="w-full">
<div className="w-full overflow-y-hidden">
<Analytics />
<ProductTour />
<Outlet />
Expand Down

0 comments on commit 9ff964f

Please sign in to comment.