Skip to content

Commit

Permalink
Fixes #182
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed Sep 10, 2023
1 parent 92d05a4 commit 0a59625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/History/Details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function DetailsPage({ navigation, route }: THistoryEntryPageProp
<>
<View style={styles.entryInfo}>
<Txt txt={t('recipient')} />
<Txt txt={type === 3 ? recipient : truncateNostrProfileInfo(recipient)} />
<Txt txt={type === 3 ? formatMintUrl(recipient) : truncateNostrProfileInfo(recipient)} />
</View>
<Separator />
</>
Expand Down

0 comments on commit 0a59625

Please sign in to comment.