Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kpyszkowski committed Dec 6, 2024
1 parent 18a4238 commit 528be24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dapp/src/pages/DashboardPage/PositionDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function PositionDetails() {
{/* TODO: Component should be moved to `CardHeader` */}
<HStack>
<TextMd>Your Acre balance</TextMd>
{!hasPendingActivities && (
{hasPendingActivities && (
<TooltipIcon
icon={IconClockHour5Filled}
label="Your balance will update once the pending deposit is finalized."
Expand Down

0 comments on commit 528be24

Please sign in to comment.