Skip to content

Commit

Permalink
fix: use correct res for organ donation
Browse files Browse the repository at this point in the history
  • Loading branch information
thoreyjona committed Nov 11, 2024
1 parent 7f9d311 commit 0c168b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/native/app/src/screens/health/health-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ export const HealthOverviewScreen: NavigationFunctionComponent = ({
: '',
},
)}`}
loading={paymentStatusRes.loading && !paymentStatusRes.data}
error={paymentStatusRes.error && !paymentStatusRes.data}
loading={organDonationRes.loading && !organDonationRes.data}
error={organDonationRes.error && !organDonationRes.data}
noBorder
/>
</InputRow>
Expand Down

0 comments on commit 0c168b4

Please sign in to comment.