diff --git a/packages/app/src/components/ViewCollective.tsx b/packages/app/src/components/ViewCollective.tsx
index 19175b8..270dd5b 100644
--- a/packages/app/src/components/ViewCollective.tsx
+++ b/packages/app/src/components/ViewCollective.tsx
@@ -106,31 +106,51 @@ const HasDonatedCard = ({
/>
= {donationsUsdValue || 0} USD
-
- Donation Streaming Rate
- G$ {formatFlowRate(donorCollective.flowRate)} / Monthly
-
+ {isDonating && (
+
+ Donation Streaming Rate
+ G$ {formatFlowRate(donorCollective.flowRate)} / Monthly
+
+ )}
{/* Stream Rate */}
{/* Dates */}
-
- Date Initiated
- {formatTime(donorCollective.timestamp)}
-
-
- Estimated End Date
- {endDate}
-
+ {isDonating && (
+ <>
+
+ Date Initiated
+ {formatTime(donorCollective.timestamp)}
+
+
+
+ Estimated End Date
+ {endDate}
+
+ >
+ )}
{/* Buttons */}
-
-
+
+ {isDonating ? (
+
+ ) : (
+ {
+ navigate(`/donate/${donorCollective.collective}`);
+ }}
+ />
+ )}