Skip to content

Commit

Permalink
fix: #242 no space
Browse files Browse the repository at this point in the history
  • Loading branch information
sirpy committed Dec 4, 2024
1 parent c83188e commit 70508ff
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions packages/app/src/components/ViewCollective.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,15 +139,17 @@ const HasDonatedCard = ({
{isDonating ? (
<StopDonationActionButton donorCollective={donorCollective} />
) : (
<RoundedButton
title="Donate"
backgroundColor={Colors.green[100]}
color={Colors.green[200]}
seeType={false}
onPress={() => {
navigate(`/donate/${donorCollective.collective}`);
}}
/>
<View flex={1}>
<RoundedButton
title="Donate"
backgroundColor={Colors.green[100]}
color={Colors.green[200]}
seeType={false}
onPress={() => {
navigate(`/donate/${donorCollective.collective}`);
}}
/>
</View>
)}
<View flex={1} marginTop={{ xl: 0, base: 4 }}>
<RoundedButton
Expand Down

0 comments on commit 70508ff

Please sign in to comment.