From 543a55688bbffdcf1c8b653c8a9eafb775815308 Mon Sep 17 00:00:00 2001
From: Martin <901824+martinstark@users.noreply.github.com>
Date: Mon, 29 Apr 2024 12:06:35 +0200
Subject: [PATCH] chore: re-enable manage productions
---
src/components/landing-page/productions-list.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/landing-page/productions-list.tsx b/src/components/landing-page/productions-list.tsx
index 4250cf80..036ce368 100644
--- a/src/components/landing-page/productions-list.tsx
+++ b/src/components/landing-page/productions-list.tsx
@@ -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`
@@ -123,7 +123,7 @@ export const ProductionsList = () => {
))}
- {/* --> TODO disabled for demo only! <-- !!productions.length && */}
+ {!!productions.length && }
>
);
};