Skip to content

Commit

Permalink
feat: disable manage prod for demo
Browse files Browse the repository at this point in the history
  • Loading branch information
martinstark committed Apr 26, 2024
1 parent de34863 commit 5fc0645
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/landing-page/productions-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { LoaderDots } from "../loader/loader.tsx";
import { useRefreshAnimation } from "./use-refresh-animation.ts";
import { DisplayContainerHeader } from "./display-container-header.tsx";
import { DisplayContainer } from "../generic-components.ts";
import { ManageProductionButton } from "./manage-production-button.tsx";
// import { ManageProductionButton } from "./manage-production-button.tsx";
import { LocalError } from "../error.tsx";

const ProductionListContainer = styled.div`
Expand Down Expand Up @@ -123,7 +123,7 @@ export const ProductionsList = () => {
</ProductionItem>
))}
</ProductionListContainer>
{!!productions.length && <ManageProductionButton />}
{/* --> TODO disabled for demo only! <-- !!productions.length && <ManageProductionButton /> */}
</>
);
};

0 comments on commit 5fc0645

Please sign in to comment.