Skip to content

Commit

Permalink
Merge 4eebd87 into e58b66e
Browse files Browse the repository at this point in the history
  • Loading branch information
adelloste authored Nov 3, 2023
2 parents e58b66e + 4eebd87 commit f225627
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ts/features/pn/components/MessageDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export const MessageDetails = ({

const maxVisiblePaymentCount = maxVisiblePaymentCountGenerator();
const scrollViewRef = React.createRef<ScrollView>();

return (
<>
<ScrollView
Expand Down Expand Up @@ -147,12 +148,12 @@ export const MessageDetails = ({
presentPaymentsBottomSheetRef={presentPaymentsBottomSheetRef}
/>

{RA.isNonEmpty(f24List) && (
{!isCancelled && RA.isNonEmpty(f24List) ? (
<>
<MessageF24 attachments={f24List} openPreview={openAttachment} />
<VSpacer size={24} />
</>
)}
) : null}

<PnMessageDetailsSection
title={I18n.t("features.pn.details.infoSection.title")}
Expand Down

0 comments on commit f225627

Please sign in to comment.