setDeleteDeploymentDialog((preVal) => !preVal)}
+ />
>
);
};
diff --git a/packages/frontend/src/components/projects/project/overview/Activity/AuctionCard.tsx b/packages/frontend/src/components/projects/project/overview/Activity/AuctionCard.tsx
index 291bc7ff..5e83d91c 100644
--- a/packages/frontend/src/components/projects/project/overview/Activity/AuctionCard.tsx
+++ b/packages/frontend/src/components/projects/project/overview/Activity/AuctionCard.tsx
@@ -96,13 +96,6 @@ export const AuctionCard = ({ project }: { project: Project }) => {
-
-
- Auction Status
-
-
{renderAuctionStatus()}
-
-
Auction Id
@@ -112,35 +105,48 @@ export const AuctionCard = ({ project }: { project: Project }) => {
- {deployers?.length > 0 ? (
-
-
- Deployer LRNs
-
- {deployers.map((deployer, index) => (
-
- {'\u2022'} {deployer.deployerLrn}
-
- ))}
-
- ) : (
-
-
- No winning deployers
-
-
- )}
- Deployer Funds Status
+ Auction Status
-
-
- {fundsStatus ? 'RELEASED' : 'LOCKED'}
-
-
+
{renderAuctionStatus()}
+
+ {auctionStatus === 'completed' && (
+ <>
+ {deployers?.length > 0 ? (
+
+
+ Deployer LRNs
+
+ {deployers.map((deployer, index) => (
+
+ {'\u2022'} {deployer.deployerLrn}
+
+ ))}
+
+ ) : (
+
+
+ No winning deployers
+
+
+ )}
+
+
+
+ Deployer Funds Status
+
+
+
+ {fundsStatus ? 'RELEASED' : 'LOCKED'}
+
+
+
+ >
+ )}
+