Skip to content

Commit

Permalink
chore: re-enable manage productions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinstark committed Apr 29, 2024
1 parent b047266 commit 543a556
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>
{/* --> TODO disabled for demo only! <-- !!productions.length && <ManageProductionButton /> */}
{!!productions.length && <ManageProductionButton />}
</>
);
};

0 comments on commit 543a556

Please sign in to comment.