|
1 | | -import AlertCircle from "@/assets/icons/alert-circle.svg?react"; |
2 | 1 | import CloudTenant from "@/assets/icons/cloud-tenant.svg?react"; |
3 | 2 | import Help from "@/assets/icons/help.svg?react"; |
| 3 | +import Info from "@/assets/icons/info.svg?react"; |
4 | 4 | import Layout from "@/assets/icons/layout.svg?react"; |
| 5 | +import { useServerInfo } from "@/data/server/info-query"; |
| 6 | +import { checkIsLocalServer } from "@/lib/server"; |
5 | 7 | import { routes } from "@/router/routes"; |
| 8 | +import { Skeleton } from "@zenml-io/react-component-library"; |
6 | 9 | import { |
7 | 10 | Tooltip, |
8 | 11 | TooltipContent, |
9 | 12 | TooltipProvider, |
10 | 13 | TooltipTrigger |
11 | 14 | } from "@zenml-io/react-component-library/components/client"; |
12 | 15 | import { Link, useSearchParams } from "react-router-dom"; |
13 | | -import * as OptionsCard from "./OptionCard"; |
14 | | -import { useServerInfo } from "@/data/server/info-query"; |
15 | | -import { Skeleton } from "@zenml-io/react-component-library"; |
16 | | -import { checkIsLocalServer } from "@/lib/server"; |
17 | 16 | import { LocalOverlay } from "./LocalOverlay"; |
| 17 | +import * as OptionsCard from "./OptionCard"; |
18 | 18 |
|
19 | 19 | const learnMoreLink = "https://docs.zenml.io/how-to/stack-deployment/deploy-a-cloud-stack"; |
20 | 20 |
|
@@ -67,7 +67,7 @@ function ManualSetupCard() { |
67 | 67 | <Tooltip> |
68 | 68 | <TooltipTrigger asChild> |
69 | 69 | <div className="z-10"> |
70 | | - <AlertCircle className="h-5 w-5 shrink-0 fill-theme-text-tertiary" /> |
| 70 | + <Info className="h-5 w-5 shrink-0 fill-theme-text-tertiary" /> |
71 | 71 | </div> |
72 | 72 | </TooltipTrigger> |
73 | 73 | <TooltipContent |
@@ -136,7 +136,7 @@ function ScanCard({ isLocalDeployment }: Props) { |
136 | 136 | <Tooltip> |
137 | 137 | <TooltipTrigger asChild> |
138 | 138 | <div className="z-10"> |
139 | | - <AlertCircle className="h-5 w-5 shrink-0 fill-theme-text-tertiary" /> |
| 139 | + <Info className="h-5 w-5 shrink-0 fill-theme-text-tertiary" /> |
140 | 140 | </div> |
141 | 141 | </TooltipTrigger> |
142 | 142 | <TooltipContent |
|
0 commit comments