Skip to content

Commit

Permalink
feat: KurtosisUpgrader component release (#2473)
Browse files Browse the repository at this point in the history
## Description
Enable the KurtosisUpgader cloud component in production 

## REMINDER: Tag Reviewers, so they get notified to review

## Is this change user facing?
YES

## References (if applicable)
<!-- Add relevant Github Issues, Discord threads, or other helpful
information. -->
<!-- You can auto-close issues by putting "Fixes #XXXX" here. -->
  • Loading branch information
leoporoli authored Jun 5, 2024
1 parent 52bbc1b commit 58f045f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Button, ButtonGroup, Flex } from "@chakra-ui/react";
import { AppPageLayout, KurtosisAlert, PageTitle } from "kurtosis-ui-components";
import { useEffect, useMemo, useState } from "react";
import { useExperiments } from "../experiments/ExperimentsContext";
import { BrowserRecommendator } from "./components/BrowserRecommendator";
import { KurtosisUpgrader } from "./components/KurtosisUpgrader";
import { EnclavesTable } from "./components/tables/EnclavesTable";
Expand All @@ -15,7 +14,6 @@ export const EnclaveList = () => {

const [selectedEnclaves, setSelectedEnclaves] = useState<EnclaveFullInfo[]>([]);

const { experiments } = useExperiments();
const enclavesKey = useMemo(
() =>
enclaves.isErr
Expand Down Expand Up @@ -48,7 +46,7 @@ export const EnclaveList = () => {
</Flex>
</Flex>
<Flex direction="column" pt={"24px"} width={"100%"} gap={8}>
{experiments.enableCloudVersionUpgrade && <KurtosisUpgrader />}
<KurtosisUpgrader />
<BrowserRecommendator />
{enclaves.isOk && (
<EnclavesTable
Expand Down

0 comments on commit 58f045f

Please sign in to comment.